mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-24 14:48:02 -05:00
23 lines
736 B
Rust
23 lines
736 B
Rust
//! High level error types for the reth in general.
|
|
|
|
#![doc(
|
|
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
|
|
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
|
|
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
|
|
)]
|
|
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
|
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
|
|
mod error;
|
|
pub use error::{RethError, RethResult};
|
|
|
|
pub use reth_consensus::ConsensusError;
|
|
pub use reth_execution_errors::{BlockExecutionError, BlockValidationError};
|
|
pub use reth_storage_errors::{
|
|
db::DatabaseError,
|
|
provider::{ProviderError, ProviderResult},
|
|
};
|