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) virtual transaction size as defined in BIP 141. This is different from actual serialized size for witness transactions as witness data is discounted.\n"
363
-
"\"fee\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + "\n"
364
-
"\"modifiedfee\" : n, (numeric) transaction fee with fee deltas used for mining priority\n"
363
+
"\"fee\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + " (DEPRECATED)\n"
364
+
"\"modifiedfee\" : n, (numeric) transaction fee with fee deltas used for mining priority (DEPRECATED)\n"
365
365
"\"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n"
366
366
"\"height\" : n, (numeric) block height when transaction entered pool\n"
367
367
"\"descendantcount\" : n, (numeric) number of in-mempool descendant transactions (including this one)\n"
368
368
"\"descendantsize\" : n, (numeric) virtual transaction size of in-mempool descendants (including this one)\n"
369
-
"\"descendantfees\" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one)\n"
369
+
"\"descendantfees\" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one) (DEPRECATED)\n"
370
370
"\"ancestorcount\" : n, (numeric) number of in-mempool ancestor transactions (including this one)\n"
371
371
"\"ancestorsize\" : n, (numeric) virtual transaction size of in-mempool ancestors (including this one)\n"
372
-
"\"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one)\n"
372
+
"\"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one) (DEPRECATED)\n"
373
373
"\"wtxid\" : hash, (string) hash of serialized transaction, including witness data\n"
374
+
"\"fees\" : {\n"
375
+
"\"base\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + "\n"
376
+
"\"modified\" : n, (numeric) transaction fee with fee deltas used for mining priority in " + CURRENCY_UNIT + "\n"
377
+
"\"ancestor\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one) in " + CURRENCY_UNIT + "\n"
378
+
"\"descendent\" : n, (numeric) number of in-mempool ancestor transactions (including this one) in " + CURRENCY_UNIT + "\n"
379
+
" }\n"
374
380
"\"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n"
0 commit comments