refactor(net): move node record constants to network-peers crate (#9161)

This commit is contained in:
Thomas Coratger
2024-06-28 09:45:23 +02:00
committed by GitHub
parent d8e6d01308
commit 530e7e8961
23 changed files with 151 additions and 290 deletions

View File

@ -21,6 +21,7 @@ reth-provider.workspace = true
reth-node-builder.workspace = true
reth-tokio-util.workspace = true
reth-stages-types.workspace = true
reth-network-peers.workspace = true
jsonrpsee.workspace = true

View File

@ -3,7 +3,7 @@ use reth::{
network::{NetworkEvent, NetworkEvents, NetworkHandle, PeersInfo},
rpc::types::PeerId,
};
use reth_chainspec::net::NodeRecord;
use reth_network_peers::NodeRecord;
use reth_tokio_util::EventStream;
use reth_tracing::tracing::info;