chore: rename miner to payload builder (#2217)

This commit is contained in:
Matthias Seitz
2023-04-13 00:04:32 +02:00
committed by GitHub
parent 2f6d5e6ad2
commit 703f0fdf89
15 changed files with 37 additions and 37 deletions

View File

@@ -31,7 +31,7 @@ reth-downloaders = { path = "../../crates/net/downloaders", features = ["test-ut
reth-tracing = { path = "../../crates/tracing" }
reth-tasks = { path = "../../crates/tasks" }
reth-net-nat = { path = "../../crates/net/nat" }
reth-miner = { path = "../../crates/miner" }
reth-payload-builder = { path = "../../crates/payload/builder" }
reth-discv4 = { path = "../../crates/net/discv4" }
# crypto

View File

@@ -36,9 +36,9 @@ use reth_interfaces::{
},
sync::SyncStateUpdater,
};
use reth_miner::TestPayloadStore;
use reth_network::{error::NetworkError, NetworkConfig, NetworkHandle, NetworkManager};
use reth_network_api::NetworkInfo;
use reth_payload_builder::TestPayloadStore;
use reth_primitives::{BlockHashOrNumber, Chain, ChainSpec, Head, Header, SealedHeader, H256};
use reth_provider::{BlockProvider, HeaderProvider, ShareableDatabase};
use reth_revm::Factory;