Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Longarithm committed May 20, 2024
1 parent 7899890 commit 805ea61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/state-viewer/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ pub(crate) fn print_epoch_analysis(
EpochManager::new_from_genesis_config(store.clone(), &near_config.genesis.config)
.expect("Failed to start Epoch Manager");

let epoch_ids = iterate_and_filter(store, |_| true);
let epoch_ids = iterate_and_filter(store.clone(), |_| true);
let epoch_infos: HashMap<EpochId, Arc<EpochInfo>> = HashMap::from_iter(
epoch_ids
.into_iter()
Expand Down

0 comments on commit 805ea61

Please sign in to comment.