Send cpfp/effective fee rate changes to subscribed ws clients

This commit is contained in:
Mononaut
2023-08-27 00:30:33 +09:00
parent 24696d0408
commit 528877f43f
7 changed files with 68 additions and 34 deletions

View File

@@ -19,7 +19,7 @@ export interface Transaction {
ancestors?: Ancestor[];
bestDescendant?: BestDescendant | null;
cpfpChecked?: boolean;
acceleration?: number;
acceleration?: boolean;
deleteAfter?: number;
_unblinded?: any;
_deduced?: boolean;

View File

@@ -27,7 +27,7 @@ export interface CpfpInfo {
effectiveFeePerVsize?: number;
sigops?: number;
adjustedVsize?: number;
acceleration?: number;
acceleration?: boolean;
}
export interface RbfInfo {