Skip to content

Commit a5f6791

Browse files
committed
rpc: Add missing gettxoutsetinfo help docs
1 parent 01386bf commit a5f6791

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rpc/blockchain.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,13 +1117,13 @@ static RPCHelpMan gettxoutsetinfo()
11171117
{RPCResult::Type::STR_AMOUNT, "total_unspendable_amount", "The total amount of coins permanently excluded from the UTXO set (only available if coinstatsindex is used)"},
11181118
{RPCResult::Type::OBJ, "block_info", "Info on amounts in the block at this block height (only available if coinstatsindex is used)",
11191119
{
1120-
{RPCResult::Type::STR_AMOUNT, "prevout_spent", ""},
1121-
{RPCResult::Type::STR_AMOUNT, "coinbase", ""},
1122-
{RPCResult::Type::STR_AMOUNT, "new_outputs_ex_coinbase", ""},
1123-
{RPCResult::Type::STR_AMOUNT, "unspendable", ""},
1120+
{RPCResult::Type::STR_AMOUNT, "prevout_spent", "Total amount of all prevouts spent in this block"},
1121+
{RPCResult::Type::STR_AMOUNT, "coinbase", "Coinbase subsidy amount of this block"},
1122+
{RPCResult::Type::STR_AMOUNT, "new_outputs_ex_coinbase", "Total amount of new outputs created by this block"},
1123+
{RPCResult::Type::STR_AMOUNT, "unspendable", "Total amount of unspendable outputs created in this block"},
11241124
{RPCResult::Type::OBJ, "unspendables", "Detailed view of the unspendable categories",
11251125
{
1126-
{RPCResult::Type::STR_AMOUNT, "genesis_block", ""},
1126+
{RPCResult::Type::STR_AMOUNT, "genesis_block", "The unspendable amount of the Genesis block subsidy"},
11271127
{RPCResult::Type::STR_AMOUNT, "bip30", "Transactions overridden by duplicates (no longer possible with BIP30)"},
11281128
{RPCResult::Type::STR_AMOUNT, "scripts", "Amounts sent to scripts that are unspendable (for example OP_RETURN outputs)"},
11291129
{RPCResult::Type::STR_AMOUNT, "unclaimed_rewards", "Fee rewards that miners did not claim in their coinbase transaction"},

0 commit comments

Comments
 (0)