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 ea67b99 commit 3359c0c
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 @@ -329,7 +329,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 3359c0c

Please sign in to comment.