diff --git a/Cargo.lock b/Cargo.lock index 8df6440c4..68e043763 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7588,8 +7588,8 @@ dependencies = [ "futures-util", "metrics", "reth-engine-primitives", + "reth-errors", "reth-ethereum-engine-primitives", - "reth-interfaces", "reth-metrics", "reth-primitives", "reth-provider", diff --git a/crates/payload/builder/Cargo.toml b/crates/payload/builder/Cargo.toml index aa4b785cd..c95b22c3f 100644 --- a/crates/payload/builder/Cargo.toml +++ b/crates/payload/builder/Cargo.toml @@ -16,7 +16,7 @@ workspace = true reth-primitives.workspace = true reth-rpc-types.workspace = true reth-transaction-pool.workspace = true -reth-interfaces.workspace = true +reth-errors.workspace = true reth-provider.workspace = true reth-engine-primitives.workspace = true reth-ethereum-engine-primitives.workspace = true diff --git a/crates/payload/builder/src/error.rs b/crates/payload/builder/src/error.rs index a7aa7e88b..eee8899cf 100644 --- a/crates/payload/builder/src/error.rs +++ b/crates/payload/builder/src/error.rs @@ -1,6 +1,6 @@ //! Error types emitted by types or implementations of this crate. -use reth_interfaces::{provider::ProviderError, RethError}; +use reth_errors::{ProviderError, RethError}; use reth_primitives::{revm_primitives::EVMError, B256}; use reth_transaction_pool::BlobStoreError; use tokio::sync::oneshot;