aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglozow <gloriajzhao@gmail.com>2021-12-03 18:03:16 +0000
committerglozow <gloriajzhao@gmail.com>2021-12-06 15:30:06 +0000
commitb4adc5ad6769e4a5a6179dfff271cd4c9dc47a5b (patch)
treef1480b9141908f2299d160790de098bc7590159b
parentb6002b07a36f0d58dc6becd04bfcf78599056b7c (diff)
downloadbitcoin-b4adc5ad6769e4a5a6179dfff271cd4c9dc47a5b.tar.xz
[bugfix] update lockpoints correctly during reorg
During a reorg, we re-check timelocks on all mempool entries using CheckSequenceLocks(useExistingLockPoints=false) and remove any now-invalid entries. CheckSequenceLocks() also mutates the LockPoints passed in, and we update valid entries' LockPoints using update_lock_points. Thus, update_lock_points(lp) needs to be called right after CheckSequenceLocks(lp), otherwise we lose the data in lp. commit bedf246 introduced a bug by separating those two loops.
-rw-r--r--src/txmempool.cpp5
-rw-r--r--src/validation.cpp2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index ba1bdb197b..26cb2ff4b4 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -639,10 +639,7 @@ void CTxMemPool::removeForReorg(CChain& chain, std::function<bool(txiter)> check
}
RemoveStaged(setAllRemoves, false, MemPoolRemovalReason::REORG);
for (indexed_transaction_set::const_iterator it = mapTx.begin(); it != mapTx.end(); it++) {
- const LockPoints lp{it->GetLockPoints()};
- if (!TestLockPointValidity(chain, lp)) {
- mapTx.modify(it, update_lock_points(lp));
- }
+ assert(TestLockPointValidity(chain, it->GetLockPoints()));
}
}
diff --git a/src/validation.cpp b/src/validation.cpp
index 203bd57676..68729e4863 100644
--- a/src/validation.cpp
+++ b/src/validation.cpp
@@ -378,6 +378,8 @@ void CChainState::MaybeUpdateMempoolForReorg(
}
}
}
+ // CheckSequenceLocks updates lp. Update the mempool entry LockPoints.
+ if (!validLP) m_mempool->mapTx.modify(it, update_lock_points(lp));
return should_remove;
};