refine probes further

This commit is contained in:
Valentin Balaschenko
2026-07-15 14:55:53 +01:00
parent 48ee743067
commit 3072bf1939

View File

@@ -453,7 +453,6 @@ LedgerHistory::builtLedger(
consensusValidated_.fetchAndModify(index, [&](CvEntry& entry) {
if (entry.validated && !entry.built)
{
SOMETIMES(true, "xrpl::LedgerHistory::builtLedger : validated arrived first");
SOMETIMES(
entry.validated.value() != hash,
"xrpl::LedgerHistory::builtLedger : validated-first mismatch");
@@ -503,7 +502,6 @@ LedgerHistory::validatedLedger(
consensusValidated_.fetchAndModify(index, [&](CvEntry& entry) {
if (entry.built && !entry.validated)
{
SOMETIMES(true, "xrpl::LedgerHistory::validatedLedger : built arrived first");
XRPL_ASSERT(
entry.consensus.has_value(),
"xrpl::LedgerHistory::validatedLedger : consensus set when built set");