Skip to content

Commit

Permalink
Log each check accept from validation hash and seq to check for dups.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrippled committed Aug 25, 2024
1 parent dac66ee commit 2bbdbb7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/xrpld/app/ledger/detail/LedgerMaster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,11 @@ LedgerMaster::failedSave(std::uint32_t seq, uint256 const& hash)
void
LedgerMaster::checkAccept(uint256 const& hash, std::uint32_t seq, bool jq)
{
if (jq)
{
JLOG(m_journal.debug()) << "checkAccept jq validation " << hash << " " << seq;
}

std::size_t valCount = 0;

if (seq != 0)
Expand Down

0 comments on commit 2bbdbb7

Please sign in to comment.