You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return"\"size\" : n, (numeric) transaction size in bytes\n"
334
+
return"\"size\" : n, (numeric) virtual transaction size as defined in BIP 141. This is different from actual serialized size for witness transactions as witness data is discounted.\n"
335
335
"\"fee\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + "\n"
336
336
"\"modifiedfee\" : n, (numeric) transaction fee with fee deltas used for mining priority\n"
337
337
"\"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n"
338
338
"\"height\" : n, (numeric) block height when transaction entered pool\n"
339
339
"\"startingpriority\" : n, (numeric) priority when transaction entered pool\n"
340
340
"\"currentpriority\" : n, (numeric) transaction priority now\n"
341
341
"\"descendantcount\" : n, (numeric) number of in-mempool descendant transactions (including this one)\n"
342
-
"\"descendantsize\" : n, (numeric) size of in-mempool descendants (including this one)\n"
342
+
"\"descendantsize\" : n, (numeric) virtual transaction size of in-mempool descendants (including this one)\n"
343
343
"\"descendantfees\" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one)\n"
344
344
"\"ancestorcount\" : n, (numeric) number of in-mempool ancestor transactions (including this one)\n"
345
-
"\"ancestorsize\" : n, (numeric) size of in-mempool ancestors (including this one)\n"
345
+
"\"ancestorsize\" : n, (numeric) virtual transaction size of in-mempool ancestors (including this one)\n"
346
346
"\"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one)\n"
347
347
"\"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n"
"\"bytes\": xxxxx, (numeric) Sum of all tx sizes\n"
1243
+
"\"bytes\": xxxxx, (numeric) Sum of all virtual transaction sizes as defined in BIP 141. Differs from actual serialized size because witness data is discounted\n"
1244
1244
"\"usage\": xxxxx, (numeric) Total memory usage for the mempool\n"
1245
1245
"\"maxmempool\": xxxxx, (numeric) Maximum memory usage for the mempool\n"
1246
1246
"\"mempoolminfee\": xxxxx (numeric) Minimum fee for tx to be accepted\n"
Copy file name to clipboardExpand all lines: src/txmempool.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -422,7 +422,7 @@ class CTxMemPool
422
422
unsignedint nTransactionsUpdated;
423
423
CBlockPolicyEstimator* minerPolicyEstimator;
424
424
425
-
uint64_t totalTxSize; //!< sum of all mempool tx' byte sizes
425
+
uint64_t totalTxSize; //!< sum of all mempool tx's virtual sizes. Differs from serialized tx size since witness data is discounted. Defined in BIP 141.
426
426
uint64_t cachedInnerUsage; //!< sum of dynamic memory usage of all the map elements (NOT the maps themselves)
0 commit comments