diff options
author | Casey Rodarmor <casey@rodarmor.com> | 2015-08-03 15:49:01 -0400 |
---|---|---|
committer | Casey Rodarmor <casey@rodarmor.com> | 2015-08-03 15:49:01 -0400 |
commit | 2d8c49d126bf2551ef0268f314ab75932fa96510 (patch) | |
tree | 8c63f1472c224bd05ba300d001406cec549b6309 /src/txmempool.cpp | |
parent | 45d1f5932ba85b8e5f3e2cc6839bf7a257ca460a (diff) |
Clean up tx prioritization when conflict mined
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 5bc06e5056..0e65aa1c59 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -193,6 +193,7 @@ void CTxMemPool::removeConflicts(const CTransaction &tx, std::list<CTransaction> if (txConflict != tx) { remove(txConflict, removed, true); + ClearPrioritisation(txConflict.GetHash()); } } } |