Renaming minimum fee to rejecting.

Adding progressbar to mempool size.
refs #171
This commit is contained in:
softsimon
2021-01-12 20:45:41 +07:00
parent 46b7e6961e
commit ec845a6ac2
8 changed files with 42 additions and 21 deletions

View File

@@ -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 {