Send mempool effective fee rate changes to frontend & apply

This commit is contained in:
Mononaut
2023-04-05 08:40:43 +09:00
parent 3d5c156776
commit 4c569c0ded
6 changed files with 21 additions and 6 deletions

View File

@@ -54,6 +54,7 @@ export interface MempoolBlockWithTransactions extends MempoolBlock {
export interface MempoolBlockDelta {
added: TransactionStripped[],
removed: string[],
changed?: { txid: string, rate: number | undefined }[];
}
export interface MempoolInfo {