Avoid fetching full audit on tx page

This commit is contained in:
natsoni
2024-07-10 13:13:53 +09:00
parent 2d03ab6346
commit 99ea1ad0a0
9 changed files with 128 additions and 30 deletions

View File

@@ -42,6 +42,19 @@ export interface BlockAudit {
matchRate: number,
expectedFees?: number,
expectedWeight?: number,
template?: any[];
}
export interface TransactionAudit {
seen?: boolean;
expected?: boolean;
added?: boolean;
prioritized?: boolean;
delayed?: number;
accelerated?: boolean;
conflict?: boolean;
coinbase?: boolean;
firstSeen?: number;
}
export interface AuditScore {