diff --git a/src/ripple/app/consensus/RCLConsensus.cpp b/src/ripple/app/consensus/RCLConsensus.cpp index a5630790f..3c1de1a59 100644 --- a/src/ripple/app/consensus/RCLConsensus.cpp +++ b/src/ripple/app/consensus/RCLConsensus.cpp @@ -512,14 +512,7 @@ RCLConsensus::Adaptor::doAccept( << " has not been included as of ledger " << curr << "."; - if (wait / censorshipWarnInternal == censorshipMaxWarnings) - { - JLOG(j.error()) << ss.str() << " Additional warnings suppressed."; - } - else - { - JLOG(j.warn()) << ss.str(); - } + JLOG(j.warn()) << ss.str(); } return false; diff --git a/src/ripple/app/consensus/RCLConsensus.h b/src/ripple/app/consensus/RCLConsensus.h index b40f62bec..3b1207fe0 100644 --- a/src/ripple/app/consensus/RCLConsensus.h +++ b/src/ripple/app/consensus/RCLConsensus.h @@ -51,9 +51,6 @@ class RCLConsensus /** Warn for transactions that haven't been included every so many ledgers. */ constexpr static unsigned int censorshipWarnInternal = 15; - /** Stop warning after several warnings. */ - constexpr static unsigned int censorshipMaxWarnings = 5; - // Implements the Adaptor template interface required by Consensus. class Adaptor {