diff options
author | Nadav Ivgi <nadav@shesek.info> | 2020-08-21 17:41:02 +0300 |
---|---|---|
committer | Nadav Ivgi <nadav@shesek.info> | 2020-08-21 17:41:02 +0300 |
commit | 4148f55dd016f940df50a44cf03d117cdb1dd929 (patch) | |
tree | a762cc7dce29a528cf6b8a84ce8a0530e62f87da /src/rpc/blockchain.cpp | |
parent | d254e6e7951fa81fad06bc82516770a0c186a2fd (diff) |
docs: Correct description for getblockstats's txs field
It does count the coinbase transaction.
Refs #19766
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r-- | src/rpc/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 4879ef7549..033e00daf5 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1741,7 +1741,7 @@ static UniValue getblockstats(const JSONRPCRequest& request) {RPCResult::Type::NUM, "total_size", "Total size of all non-coinbase transactions"}, {RPCResult::Type::NUM, "total_weight", "Total weight of all non-coinbase transactions divided by segwit scale factor (4)"}, {RPCResult::Type::NUM, "totalfee", "The fee total"}, - {RPCResult::Type::NUM, "txs", "The number of transactions (excluding coinbase)"}, + {RPCResult::Type::NUM, "txs", "The number of transactions (including coinbase)"}, {RPCResult::Type::NUM, "utxo_increase", "The increase/decrease in the number of unspent outputs"}, {RPCResult::Type::NUM, "utxo_size_inc", "The increase/decrease in size for the utxo index (not discounting op_return and similar)"}, }}, |