From c9ad5bbb7946ebc5d089e58fa91196a251dfe6c1 Mon Sep 17 00:00:00 2001 From: Debjit Bhowal Date: Tue, 8 Oct 2024 15:57:18 +0530 Subject: [PATCH] Added InternalBlockExecutionError to execute.rs exports (#11525) Co-authored-by: Matthias Seitz --- crates/evm/src/execute.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/evm/src/execute.rs b/crates/evm/src/execute.rs index 3fc2975f0ff78..1bd79378127e2 100644 --- a/crates/evm/src/execute.rs +++ b/crates/evm/src/execute.rs @@ -1,7 +1,9 @@ //! Traits for execution. // Re-export execution types -pub use reth_execution_errors::{BlockExecutionError, BlockValidationError}; +pub use reth_execution_errors::{ + BlockExecutionError, BlockValidationError, InternalBlockExecutionError, +}; pub use reth_execution_types::{BlockExecutionInput, BlockExecutionOutput, ExecutionOutcome}; pub use reth_storage_errors::provider::ProviderError;