mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
7 lines
207 B
Rust
7 lines
207 B
Rust
//! Error types emitted by types or implementations of this crate.
|
|
|
|
/// Possible error variants during payload building.
|
|
#[derive(Debug, thiserror::Error)]
|
|
#[error("Payload error")]
|
|
pub struct PayloadError;
|