aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-10-27 11:57:21 +0100
committerWladimir J. van der Laan <[email protected]>2015-10-27 11:58:35 +0100
commit8f3b3cdee497b8a1d7c6a7279e7bb13435527b60 (patch)
tree0300f0b3a5d31e5e963025b1caf27c480bd69871 /src/txmempool.cpp
parentMerge pull request #6889 (diff)
parentClean up tx prioritization when conflict mined (diff)
downloaddiscoin-8f3b3cdee497b8a1d7c6a7279e7bb13435527b60.tar.xz
discoin-8f3b3cdee497b8a1d7c6a7279e7bb13435527b60.zip
Merge pull request #6464
2d8c49d Clean up tx prioritization when conflict mined (Casey Rodarmor)
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 efa5c8f7a..47e8de536 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -512,6 +512,7 @@ void CTxMemPool::removeConflicts(const CTransaction &tx, std::list<CTransaction>
if (txConflict != tx)
{
remove(txConflict, removed, true);
+ ClearPrioritisation(txConflict.GetHash());
}
}
}