mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use std HashMap (#3182)
This commit is contained in:
@ -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 = []
|
||||
|
||||
@ -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].
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user