chore: remove constants reexport (#12549)

This commit is contained in:
Matthias Seitz
2024-11-14 18:36:31 +01:00
committed by GitHub
parent bd29f82567
commit a7bb1d1fa3
14 changed files with 34 additions and 21 deletions

View File

@ -20,6 +20,7 @@ reth-node-core.workspace = true
reth-node-api.workspace = true
reth-rpc-types-compat.workspace = true
reth-primitives = { workspace = true, features = ["alloy-compat"] }
reth-primitives-traits.workspace = true
reth-tracing.workspace = true
# alloy

View File

@ -1,7 +1,7 @@
//! Contains various benchmark output formats, either for logging or for
//! serialization to / from files.
use reth_primitives::constants::gas_units::GIGAGAS;
use reth_primitives_traits::constants::GIGAGAS;
use serde::{ser::SerializeStruct, Serialize};
use std::time::Duration;