chore: changed imports in network-proxy (examples) (#15644)

This commit is contained in:
Soubhik Singha Mahapatra
2025-04-10 11:04:11 +05:30
committed by GitHub
parent 5182fe59c1
commit 37d1014cdd
3 changed files with 13 additions and 13 deletions

View File

@@ -13,15 +13,17 @@
#![warn(unused_crate_dependencies)]
use futures::StreamExt;
use reth_chainspec::DEV;
use reth_network::{
config::rng_secret_key,
eth_requests::IncomingEthRequest,
p2p::HeadersClient,
transactions::NetworkTransactionEvent,
types::{BlockHashOrNumber, NewPooledTransactionHashes68},
BlockDownloaderProvider, FetchClient, NetworkConfig, NetworkEventListenerProvider,
NetworkHandle, NetworkInfo, NetworkManager, Peers,
use reth_ethereum::{
chainspec::DEV,
network::{
config::rng_secret_key,
eth_requests::IncomingEthRequest,
p2p::HeadersClient,
transactions::NetworkTransactionEvent,
types::{BlockHashOrNumber, NewPooledTransactionHashes68},
BlockDownloaderProvider, FetchClient, NetworkConfig, NetworkEventListenerProvider,
NetworkHandle, NetworkInfo, NetworkManager, Peers,
},
};
#[tokio::main]