aboutsummaryrefslogtreecommitdiff
path: root/src/node/coinstats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/coinstats.h')
-rw-r--r--src/node/coinstats.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/node/coinstats.h b/src/node/coinstats.h
index ba565eba43..8be256edc9 100644
--- a/src/node/coinstats.h
+++ b/src/node/coinstats.h
@@ -39,7 +39,10 @@ struct CCoinsStats
//! The number of coins contained.
uint64_t coins_count{0};
- bool from_index{false};
+ //! Signals if the coinstatsindex should be used (when available).
+ bool index_requested{true};
+ //! Signals if the coinstatsindex was used to retrieve the statistics.
+ bool index_used{false};
// Following values are only available from coinstats index
CAmount total_subsidy{0};