Added InternalBlockExecutionError to execute.rs exports (#11525)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Debjit Bhowal
2024-10-08 15:57:18 +05:30
committed by GitHub
parent ece894bd28
commit a2cfa9e050

View File

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