File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,24 @@ struct CCoinsStats
45
45
bool index_used{false };
46
46
47
47
// Following values are only available from coinstats index
48
+
49
+ // ! Total cumulative amount of block subsidies up to and including this block
48
50
CAmount total_subsidy{0 };
51
+ // ! Total cumulative amount of unspendable coins up to and including this block
49
52
CAmount total_unspendable_amount{0 };
53
+ // ! Total cumulative amount of prevouts spent up to and including this block
50
54
CAmount total_prevout_spent_amount{0 };
55
+ // ! Total cumulative amount of outputs created up to and including this block
51
56
CAmount total_new_outputs_ex_coinbase_amount{0 };
57
+ // ! Total cumulative amount of coinbase outputs up to and including this block
52
58
CAmount total_coinbase_amount{0 };
59
+ // ! The unspendable coinbase amount from the genesis block
53
60
CAmount total_unspendables_genesis_block{0 };
61
+ // ! The two unspendable coinbase outputs total amount caused by BIP30
54
62
CAmount total_unspendables_bip30{0 };
63
+ // ! Total cumulative amount of outputs sent to unspendable scripts (OP_RETURN for example) up to and including this block
55
64
CAmount total_unspendables_scripts{0 };
65
+ // ! Total cumulative amount of coins lost due to unclaimed miner rewards up to and including this block
56
66
CAmount total_unspendables_unclaimed_rewards{0 };
57
67
58
68
CCoinsStats (CoinStatsHashType hash_type) : m_hash_type(hash_type) {}
You can’t perform that action at this time.
0 commit comments