mirror of
https://github.com/mempool/mempool.git
synced 2025-04-12 22:09:24 +02:00
Merge pull request #5274 from mempool/mononaut/stale-cpfp
Fix stale cpfp bug
This commit is contained in:
commit
2b96c99fb3
@ -353,6 +353,9 @@ class MempoolBlocks {
|
||||
for (const txid of Object.keys(candidates?.txs ?? mempool)) {
|
||||
if (txid in mempool) {
|
||||
mempool[txid].cpfpDirty = false;
|
||||
mempool[txid].ancestors = [];
|
||||
mempool[txid].descendants = [];
|
||||
mempool[txid].bestDescendant = null;
|
||||
}
|
||||
}
|
||||
for (const [txid, rate] of rates) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user