Browse Source

Fixes #1597

cl-refactor
Gav Wood 10 years ago
parent
commit
71c83172c5
  1. 2
      libethereum/State.cpp

2
libethereum/State.cpp

@ -451,7 +451,7 @@ bool State::cull(TransactionQueue& _tq) const
{
try
{
if (i.second.nonce() <= transactionsFrom(i.second.sender()))
if (i.second.nonce() < transactionsFrom(i.second.sender()))
{
_tq.drop(i.first);
ret = true;

Loading…
Cancel
Save