Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangTao1596 committed Jun 14, 2022
1 parent ef66bb2 commit 11a7519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neo/Ledger/MemoryPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ private bool CheckConflicts(Transaction tx)
if (_unsortedTransactions.TryGetValue(hash, out PoolItem item))
{
if (!tx.Signers.Select(p => p.Account).Contains(item.Tx.Sender)) return false;
if (tx.NetworkFee < item.Tx.NetworkFee) return false;
if (tx.NetworkFee <= item.Tx.NetworkFee) return false;
to_removed.Add(item);
}
}
Expand Down

0 comments on commit 11a7519

Please sign in to comment.