From e1edbcf581c8ea3991961b55e78d545af19b7b1f Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 6 Jul 2015 22:04:39 -0700 Subject: [PATCH] Avoid spurious error messages. --- libethereum/State.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libethereum/State.cpp b/libethereum/State.cpp index 22a172bcb..e1bdd19b6 100644 --- a/libethereum/State.cpp +++ b/libethereum/State.cpp @@ -536,7 +536,7 @@ pair State::sync(BlockChain const& _bc, TransactionQu if (req > got) { // too old - for (Transaction const& mt: m_transactions) +/* for (Transaction const& mt: m_transactions) { if (mt.from() == t.from()) { @@ -545,7 +545,7 @@ pair State::sync(BlockChain const& _bc, TransactionQu else if (mt.nonce() == t.nonce() && mt.gasPrice() <= t.gasPrice()) cnote << t.sha3() << "Dropping old transaction (gas price lower)"; } - } + }*/ _tq.drop(t.sha3()); } else if (got > req + _tq.waiting(t.sender()))