chore: rename network-types to network-peers (#8699)

This commit is contained in:
Matthias Seitz
2024-06-09 15:13:46 +02:00
committed by GitHub
parent c1d69d3a7e
commit 2852893a7d
73 changed files with 96 additions and 96 deletions

View File

@ -11,7 +11,7 @@ reth-network.workspace = true
reth-discv4.workspace = true
reth-eth-wire.workspace = true
reth-ecies.workspace = true
reth-network-types.workspace = true
reth-network-peers.workspace = true
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }

View File

@ -16,7 +16,7 @@ use reth_eth_wire::{
EthMessage, EthStream, HelloMessage, P2PStream, Status, UnauthedEthStream, UnauthedP2PStream,
};
use reth_network::config::rng_secret_key;
use reth_network_types::pk2id;
use reth_network_peers::pk2id;
use reth_primitives::{
mainnet_nodes, Chain, Hardfork, Head, NodeRecord, MAINNET, MAINNET_GENESIS_HASH,
};