@@ -1171,7 +1171,6 @@ static RPCHelpMan gettxoutsetinfo()
11711171 {RPCResult::Type::OBJ , " unspendables" , " Detailed view of the unspendable categories" ,
11721172 {
11731173 {RPCResult::Type::STR_AMOUNT , " genesis_block" , " The unspendable amount of the Genesis block subsidy" },
1174- {RPCResult::Type::STR_AMOUNT , " bip30" , " Transactions overridden by duplicates (no longer possible with BIP30)" },
11751174 {RPCResult::Type::STR_AMOUNT , " scripts" , " Amounts sent to scripts that are unspendable (for example OP_RETURN outputs)" },
11761175 {RPCResult::Type::STR_AMOUNT , " unclaimed_rewards" , " Fee rewards that miners did not claim in their coinbase transaction" },
11771176 }}
@@ -1275,7 +1274,6 @@ static RPCHelpMan gettxoutsetinfo()
12751274
12761275 UniValue unspendables (UniValue::VOBJ );
12771276 unspendables.pushKV (" genesis_block" , ValueFromAmount (stats.total_unspendables_genesis_block - prev_stats.total_unspendables_genesis_block ));
1278- unspendables.pushKV (" bip30" , ValueFromAmount (stats.total_unspendables_bip30 - prev_stats.total_unspendables_bip30 ));
12791277 unspendables.pushKV (" scripts" , ValueFromAmount (stats.total_unspendables_scripts - prev_stats.total_unspendables_scripts ));
12801278 unspendables.pushKV (" unclaimed_rewards" , ValueFromAmount (stats.total_unspendables_unclaimed_rewards - prev_stats.total_unspendables_unclaimed_rewards ));
12811279 block_info.pushKV (" unspendables" , unspendables);
0 commit comments