diff --git a/crates/rpc-types-eth/src/transaction/error.rs b/crates/rpc-types-eth/src/transaction/error.rs index ae96d53367e..b4f59ffbb1c 100644 --- a/crates/rpc-types-eth/src/transaction/error.rs +++ b/crates/rpc-types-eth/src/transaction/error.rs @@ -64,4 +64,7 @@ pub enum ConversionError { /// Excess blob gas integer conversion error #[error("excess blob gas integer conversion error: {0}")] ExcessBlobGasConversion(TryFromIntError), + /// A custom Conversion Error that doesn't fit other categories. + #[error("conversion error: {0}")] + Custom(String), }