aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorCasey Rodarmor <[email protected]>2015-08-03 15:49:01 -0400
committerCasey Rodarmor <[email protected]>2015-08-03 15:49:01 -0400
commit2d8c49d126bf2551ef0268f314ab75932fa96510 (patch)
tree8c63f1472c224bd05ba300d001406cec549b6309 /src/txmempool.cpp
parentMerge pull request #6381 (diff)
downloaddiscoin-2d8c49d126bf2551ef0268f314ab75932fa96510.tar.xz
discoin-2d8c49d126bf2551ef0268f314ab75932fa96510.zip
Clean up tx prioritization when conflict mined
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 5bc06e505..0e65aa1c5 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());
}
}
}