Fix: ledger bootstrap_weights size is reported as 0 (#3978)
This commit is contained in:
parent
1f5d2e5df3
commit
4df1109d17
2 changed files with 1 additions and 2 deletions
|
|
@ -1605,7 +1605,7 @@ nano::uncemented_info::uncemented_info (nano::block_hash const & cemented_fronti
|
||||||
|
|
||||||
std::unique_ptr<nano::container_info_component> nano::collect_container_info (ledger & ledger, std::string const & name)
|
std::unique_ptr<nano::container_info_component> nano::collect_container_info (ledger & ledger, std::string const & name)
|
||||||
{
|
{
|
||||||
auto count = ledger.bootstrap_weights_size.load ();
|
auto count = ledger.bootstrap_weights.size ();
|
||||||
auto sizeof_element = sizeof (decltype (ledger.bootstrap_weights)::value_type);
|
auto sizeof_element = sizeof (decltype (ledger.bootstrap_weights)::value_type);
|
||||||
auto composite = std::make_unique<container_info_composite> (name);
|
auto composite = std::make_unique<container_info_composite> (name);
|
||||||
composite->add_component (std::make_unique<container_info_leaf> (container_info{ "bootstrap_weights", count, sizeof_element }));
|
composite->add_component (std::make_unique<container_info_leaf> (container_info{ "bootstrap_weights", count, sizeof_element }));
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,6 @@ public:
|
||||||
nano::ledger_cache cache;
|
nano::ledger_cache cache;
|
||||||
nano::stat & stats;
|
nano::stat & stats;
|
||||||
std::unordered_map<nano::account, nano::uint128_t> bootstrap_weights;
|
std::unordered_map<nano::account, nano::uint128_t> bootstrap_weights;
|
||||||
std::atomic<size_t> bootstrap_weights_size{ 0 };
|
|
||||||
uint64_t bootstrap_weight_max_blocks{ 1 };
|
uint64_t bootstrap_weight_max_blocks{ 1 };
|
||||||
std::atomic<bool> check_bootstrap_weights;
|
std::atomic<bool> check_bootstrap_weights;
|
||||||
bool pruning{ false };
|
bool pruning{ false };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue