chore: use std HashMap (#3182)

This commit is contained in:
Matthias Seitz
2023-06-15 17:12:10 +02:00
committed by GitHub
parent 600f3eac8c
commit 081df84f99
2 changed files with 4 additions and 3 deletions

View File

@ -29,7 +29,6 @@ futures-util = { workspace = true }
thiserror = { workspace = true }
sha2 = { version = "0.10", default-features = false }
tracing = { workspace = true }
hashbrown = "0.13"
[features]
test-utils = []

View File

@ -1,12 +1,14 @@
//! Database adapters for payload building.
use hashbrown::{hash_map::Entry, HashMap};
use reth_primitives::U256;
use revm_primitives::{
db::{Database, DatabaseRef},
AccountInfo, Address, Bytecode, B256,
};
use std::cell::RefCell;
use std::{
cell::RefCell,
collections::{hash_map::Entry, HashMap},
};
/// A container type that caches all [DatabaseRef] reads from an underlying [DatabaseRef].
///