pub type OpError<CTX> = EVMError<<<CTX as ContextTr>::Db as Database>::Error, OpTransactionError>;
Expand description
Type alias for the error type of the OpEvm.
Aliased Type§
pub enum OpError<CTX> {
Transaction(OpTransactionError),
Header(InvalidHeader),
Database(<<CTX as ContextTr>::Db as Database>::Error),
Custom(String),
}