mirror of
https://github.com/mempool/mempool.git
synced 2025-04-21 22:16:05 +02:00
Pizza tracker rbf tree traversal to find mined tx
This commit is contained in:
parent
976e505445
commit
f77582250f
@ -220,7 +220,23 @@ export class TrackerComponent implements OnInit, OnDestroy {
|
||||
this.rbfInfo = rbfResponse?.replacements;
|
||||
this.rbfReplaces = rbfResponse?.replaces || null;
|
||||
if (this.rbfInfo) {
|
||||
// link to the latest pending version
|
||||
this.latestReplacement = this.rbfInfo.tx.txid;
|
||||
// or traverse the rbf tree to find a confirmed version
|
||||
if (this.rbfInfo.mined) {
|
||||
const stack = [this.rbfInfo];
|
||||
let found = false;
|
||||
while (stack.length && !found) {
|
||||
const top = stack.pop();
|
||||
if (top?.tx.mined) {
|
||||
found = true;
|
||||
this.latestReplacement = top.tx.txid;
|
||||
break;
|
||||
} else {
|
||||
stack.push(...top.replaces);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user