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
Merge #12240: [rpc] Introduced a new fees structure that aggregates all sub-field fee types denominated in BTC
7de1de7 Add new fee structure with all sub-fields denominated in BTC (mryandao)
Pull request description:
the denomination for `fee` is current in btc while the other such as `decendentFee` and `ancestorFee` are in satoshis.
Tree-SHA512: e428f6dca1d339f89ab73e38ce5903f5465c46b159069d9bcc3f8b1140fe6657fa49a11abe0088e9f7ba9999f64af72a349a4735bf5eaa61b8e4a185b23543f3
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"
361
-
"\"fee\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + "\n"
362
-
"\"modifiedfee\" : n, (numeric) transaction fee with fee deltas used for mining priority\n"
361
+
"\"fee\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + " (DEPRECATED)\n"
362
+
"\"modifiedfee\" : n, (numeric) transaction fee with fee deltas used for mining priority (DEPRECATED)\n"
363
363
"\"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n"
364
364
"\"height\" : n, (numeric) block height when transaction entered pool\n"
365
365
"\"descendantcount\" : n, (numeric) number of in-mempool descendant transactions (including this one)\n"
366
366
"\"descendantsize\" : n, (numeric) virtual transaction size of in-mempool descendants (including this one)\n"
367
-
"\"descendantfees\" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one)\n"
367
+
"\"descendantfees\" : n, (numeric) modified fees (see above) of in-mempool descendants (including this one) (DEPRECATED)\n"
368
368
"\"ancestorcount\" : n, (numeric) number of in-mempool ancestor transactions (including this one)\n"
369
369
"\"ancestorsize\" : n, (numeric) virtual transaction size of in-mempool ancestors (including this one)\n"
370
-
"\"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one)\n"
370
+
"\"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one) (DEPRECATED)\n"
371
371
"\"wtxid\" : hash, (string) hash of serialized transaction, including witness data\n"
372
+
"\"fees\" : {\n"
373
+
"\"base\" : n, (numeric) transaction fee in " + CURRENCY_UNIT + "\n"
374
+
"\"modified\" : n, (numeric) transaction fee with fee deltas used for mining priority in " + CURRENCY_UNIT + "\n"
375
+
"\"ancestor\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one) in " + CURRENCY_UNIT + "\n"
376
+
"\"descendent\" : n, (numeric) number of in-mempool ancestor transactions (including this one) in " + CURRENCY_UNIT + "\n"
377
+
" }\n"
372
378
"\"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n"
0 commit comments