mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: split db abstraction into new crate (#8594)
This commit is contained in:
@ -10,6 +10,7 @@ futures.workspace = true
|
||||
jsonrpsee.workspace = true
|
||||
reth.workspace = true
|
||||
reth-db.workspace = true
|
||||
reth-db-api.workspace = true
|
||||
reth-node-ethereum.workspace = true
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
eyre.workspace = true
|
||||
|
||||
@ -20,7 +20,9 @@ use reth::{
|
||||
},
|
||||
utils::db::open_db_read_only,
|
||||
};
|
||||
use reth_db::{mdbx::DatabaseArguments, models::client_version::ClientVersion};
|
||||
use reth_db::mdbx::DatabaseArguments;
|
||||
use reth_db_api::models::ClientVersion;
|
||||
|
||||
// Bringing up the RPC
|
||||
use reth::rpc::builder::{
|
||||
RethRpcModule, RpcModuleBuilder, RpcServerConfig, TransportRpcModuleConfig,
|
||||
|
||||
Reference in New Issue
Block a user