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

@ -12,6 +12,7 @@ reth-chainspec.workspace = true
reth-discv4 = { workspace = true, features = ["test-utils"] }
reth-network = { workspace = true, features = ["test-utils"] }
reth-network-api.workspace = true
reth-network-peers.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true

View File

@ -1,7 +1,7 @@
use reth_chainspec::{
net::NodeRecord, BaseFeeParams, Chain, ChainHardforks, ChainSpec, EthereumHardfork,
ForkCondition,
BaseFeeParams, Chain, ChainHardforks, ChainSpec, EthereumHardfork, ForkCondition,
};
use reth_network_peers::NodeRecord;
use reth_primitives::{b256, B256};
use std::sync::Arc;