Skip to content

Commit

Permalink
chore: import static file types directly (#12490)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Nov 13, 2024
1 parent a96dee1 commit b0a39e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions crates/node/events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ workspace = true
# reth
reth-provider.workspace = true
reth-beacon-consensus.workspace = true
reth-network = { workspace = true, features = ["serde"] }
reth-network-api.workspace = true
reth-stages.workspace = true
reth-prune.workspace = true
reth-static-file.workspace = true
reth-static-file-types.workspace = true
reth-primitives-traits.workspace = true

# ethereum
Expand Down
5 changes: 2 additions & 3 deletions crates/node/events/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ use futures::Stream;
use reth_beacon_consensus::{
BeaconConsensusEngineEvent, ConsensusEngineLiveSyncProgress, ForkchoiceStatus,
};
use reth_network::NetworkEvent;
use reth_network_api::PeersInfo;
use reth_network_api::{NetworkEvent, PeersInfo};
use reth_primitives_traits::{format_gas, format_gas_throughput};
use reth_prune::PrunerEvent;
use reth_stages::{EntitiesCheckpoint, ExecOutput, PipelineEvent, StageCheckpoint, StageId};
use reth_static_file::StaticFileProducerEvent;
use reth_static_file_types::StaticFileProducerEvent;
use std::{
fmt::{Display, Formatter},
future::Future,
Expand Down

0 comments on commit b0a39e8

Please sign in to comment.