mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: introduce FileClient for importing blocks (#1111)
This commit is contained in:
@ -26,6 +26,9 @@ tokio-stream = "0.1"
|
||||
tracing = "0.1.37"
|
||||
metrics = "0.20.1"
|
||||
|
||||
thiserror = { version = "1", optional = true }
|
||||
reth-rlp = { path = "../../common/rlp", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
reth-db = { path = "../../storage/db", features = ["test-utils"] }
|
||||
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
|
||||
@ -33,3 +36,10 @@ reth-tracing = { path = "../../tracing" }
|
||||
|
||||
assert_matches = "1.5.0"
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||
reth-rlp = { path = "../../common/rlp" }
|
||||
|
||||
thiserror = "1"
|
||||
tempfile = "3.3"
|
||||
|
||||
[features]
|
||||
test-utils = ["dep:reth-rlp", "dep:thiserror"]
|
||||
|
||||
Reference in New Issue
Block a user