mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore: use HashMap::from_iter (#13649)
This commit is contained in:
@@ -241,7 +241,7 @@ where
|
||||
),
|
||||
);
|
||||
}
|
||||
let all_reverts_init: RevertsInit = std::iter::once((block, reverts_init)).collect();
|
||||
let all_reverts_init: RevertsInit = HashMap::from_iter([(block, reverts_init)]);
|
||||
|
||||
let execution_outcome = ExecutionOutcome::new_init(
|
||||
state_init,
|
||||
|
||||
Reference in New Issue
Block a user