highlight & tag fullrbf replacements in RBF timeline

This commit is contained in:
Mononaut
2023-07-13 10:42:33 +09:00
parent 9cf961c667
commit 3287c62f91
7 changed files with 69 additions and 26 deletions

View File

@@ -39,6 +39,7 @@ export interface RbfTree extends RbfInfo {
mined?: boolean;
fullRbf: boolean;
replaces: RbfTree[];
replacedBy?: RbfTransaction;
}
export interface DifficultyAdjustment {
@@ -176,9 +177,10 @@ export interface TransactionStripped {
context?: 'projected' | 'actual';
}
interface RbfTransaction extends TransactionStripped {
export interface RbfTransaction extends TransactionStripped {
rbf?: boolean;
mined?: boolean,
fullRbf?: boolean,
}
export interface MempoolPosition {
block: number,