chore: rm reth-interfaces from payload builder (#8479)

This commit is contained in:
Matthias Seitz
2024-05-29 16:58:18 +02:00
committed by GitHub
parent 09f1ee1600
commit 43bfa2ecb0
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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;