multi-pool active accelerating details component

This commit is contained in:
Mononaut
2024-05-26 20:38:28 +00:00
parent 46b5b26347
commit 05b022dec8
11 changed files with 244 additions and 7 deletions

View File

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

View File

@@ -29,6 +29,7 @@ export interface CpfpInfo {
sigops?: number;
adjustedVsize?: number;
acceleration?: boolean;
acceleratedBy?: number[];
}
export interface RbfInfo {
@@ -132,6 +133,7 @@ export interface ITranslators { [language: string]: string; }
*/
export interface SinglePoolStats {
poolId: number;
poolUniqueId: number; // unique global pool id
name: string;
link: string;
blockCount: number;
@@ -245,7 +247,8 @@ export interface RbfTransaction extends TransactionStripped {
export interface MempoolPosition {
block: number,
vsize: number,
accelerated?: boolean
accelerated?: boolean,
acceleratedBy?: number[],
}
export interface RewardStats {