Skip to content
Merged

fix #15

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/monitor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ async fn load_accounts_with_infinite_retry(
}

async fn validate_tree_roots(rpc_client: &RpcClient, db_roots: Vec<(Pubkey, Hash)>) {
let mut root_validation_errors = 0;
for chunk in db_roots.chunks(CHUNK_SIZE) {
let pubkeys = chunk.iter().map(|(pubkey, _)| *pubkey).collect();
let accounts = load_accounts_with_infinite_retry(rpc_client, pubkeys).await;
Expand Down