mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix broken assert in built/validated ledger mismatch handler
This commit is contained in:
@@ -138,7 +138,7 @@ void LedgerHistory::handleMismatch (LedgerHash const& built, LedgerHash const&
|
||||
|
||||
if (builtLedger && validLedger)
|
||||
{
|
||||
assert (builtLedger->getLedgerSeq() != validLedger->getLedgerSeq());
|
||||
assert (builtLedger->getLedgerSeq() == validLedger->getLedgerSeq());
|
||||
|
||||
// Determine the mismatch reason
|
||||
// Distinguish Byzantine failure from transaction processing difference
|
||||
|
||||
Reference in New Issue
Block a user