add explicit_into_iter_loop clippy lint (#8569)

This commit is contained in:
Thomas Coratger
2024-06-03 19:44:44 +02:00
committed by GitHub
parent e02b935e94
commit b686872716
20 changed files with 32 additions and 32 deletions

View File

@ -67,7 +67,7 @@ fn generate_test_data(size: usize) -> HashMap<Address, BundleAccount> {
let mut bundle_builder = BundleBuilder::default();
for (address, storage) in state.into_iter() {
for (address, storage) in state {
bundle_builder = bundle_builder.state_storage(address, storage);
}