aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2015-08-03 15:49:01 -0400
committerCasey Rodarmor <casey@rodarmor.com>2015-08-03 15:49:01 -0400
commit2d8c49d126bf2551ef0268f314ab75932fa96510 (patch)
tree8c63f1472c224bd05ba300d001406cec549b6309 /src/txmempool.cpp
parent45d1f5932ba85b8e5f3e2cc6839bf7a257ca460a (diff)
downloadbitcoin-2d8c49d126bf2551ef0268f314ab75932fa96510.tar.xz
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 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());
}
}
}