mirror of
https://github.com/mempool/mempool.git
synced 2025-10-11 00:32:43 +02:00
Renaming minimum fee to rejecting.
Adding progressbar to mempool size. refs #171
This commit is contained in:
@@ -35,8 +35,13 @@ export interface MempoolBlock {
|
||||
}
|
||||
|
||||
export interface MempoolInfo {
|
||||
size: number;
|
||||
bytes: number;
|
||||
loaded: boolean; // (boolean) True if the mempool is fully loaded
|
||||
size: number; // (numeric) Current tx count
|
||||
bytes: number; // (numeric) Sum of all virtual transaction sizes as defined in BIP 141.
|
||||
usage: number; // (numeric) Total memory usage for the mempool
|
||||
maxmempool: number; // (numeric) Maximum memory usage for the mempool
|
||||
mempoolminfee: number; // (numeric) Minimum fee rate in BTC/kB for tx to be accepted.
|
||||
minrelaytxfee: number; // (numeric) Current minimum relay fee for transactions
|
||||
}
|
||||
|
||||
export interface TransactionStripped {
|
||||
|
Reference in New Issue
Block a user