Limit GBT - calculate purged tx cpfp on demand

This commit is contained in:
Mononaut
2024-01-05 22:25:07 +00:00
parent e2d3bb4cc5
commit 62653086e9
6 changed files with 303 additions and 14 deletions

View File

@@ -107,6 +107,7 @@ export interface MempoolTransactionExtended extends TransactionExtended {
inputs?: number[];
lastBoosted?: number;
cpfpDirty?: boolean;
cpfpUpdated?: number;
}
export interface AuditTransaction {
@@ -187,6 +188,9 @@ export interface CpfpInfo {
bestDescendant?: BestDescendant | null;
descendants?: Ancestor[];
effectiveFeePerVsize?: number;
sigops?: number;
adjustedVsize?: number,
acceleration?: boolean,
}
export interface TransactionStripped {