multi-pool active accelerating details component
This commit is contained in:
@@ -20,6 +20,7 @@ export interface Transaction {
|
||||
bestDescendant?: BestDescendant | null;
|
||||
cpfpChecked?: boolean;
|
||||
acceleration?: boolean;
|
||||
acceleratedBy?: number[];
|
||||
deleteAfter?: number;
|
||||
_unblinded?: any;
|
||||
_deduced?: boolean;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user