metrics(download): move header stage metrics to downloader (#1014)

This commit is contained in:
Roman Krasiuk
2023-01-25 11:02:38 +02:00
committed by GitHub
parent d0f752fc5d
commit 93194e8a0c
10 changed files with 57 additions and 45 deletions

View File

@ -13,6 +13,7 @@ reth-interfaces = { path = "../../interfaces" }
reth-primitives = { path = "../../primitives" }
reth-eth-wire = { path= "../eth-wire" }
reth-db = { path = "../../storage/db" }
reth-metrics-derive = { path = "../../metrics/metrics-derive" }
# async
futures = "0.3"
@ -21,6 +22,7 @@ futures-util = "0.3.25"
# misc
tracing = "0.1.37"
thiserror = "1.0"
metrics = "0.20.1"
[dev-dependencies]
reth-db = { path = "../../storage/db", features = ["test-utils"] }