You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: dump support via `debug_traceBlockByNumber` w/ prestateTracer as another option
let block_count = block_range.end() - block_range.start() + 1;debug!("dumping storage from block range: {:?}", block_range);// a quick check to see if the rpc supports trace_ namespace// TODO: dump support via `debug_traceBlockByNumber` w/ prestateTracer as another optionlet _ = get_block_state_diff((*block_range.start()).try_into().expect("block number overflow"),&args.rpc_url,).await.map_err(|_| eyre!("failed to `trace_replayBlockTransactions`. does your rpc support it?"))?;// create a semaphore with the correct number of permitslet semaphore = Arc::new(Semaphore::new(args.threads));let handles = block_range.map(|block_number| {
The text was updated successfully, but these errors were encountered:
New Codebase TODO
dump support via
debug_traceBlockByNumber
w/ prestateTracer as another optionLocation
heimdall-rs/crates/dump/src/core/mod.rs
Line 37 in 81736fb
The text was updated successfully, but these errors were encountered: