fix(stages): save full block range to index history checkpoint (#3107)

This commit is contained in:
Alexey Shekhirin
2023-06-12 19:14:39 +04:00
committed by GitHub
parent c51a222b26
commit e0cdb0bc0b
3 changed files with 132 additions and 5 deletions

View File

@ -27,9 +27,9 @@ tokio-util = { version = "0.7", features = ["codec"] }
# misc
tracing = { workspace = true }
rayon = "1.6.0"
thiserror = "1"
# optional deps for the test-utils feature
thiserror = { version = "1", optional = true }
reth-rlp = { path = "../../rlp", optional = true }
tempfile = { version = "3.3", optional = true }
itertools = { version = "0.10", optional = true }
@ -44,8 +44,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
reth-rlp = { path = "../../rlp" }
itertools = "0.10"
thiserror = "1"
tempfile = "3.3"
[features]
test-utils = ["dep:reth-rlp", "dep:thiserror", "dep:tempfile", "dep:itertools"]
test-utils = ["dep:reth-rlp", "dep:tempfile", "dep:itertools"]