Trait IsTxError

Source
pub trait IsTxError {
    // Required method
    fn is_tx_error(&self) -> bool;
}
Expand description

Trait to check if the error is a transaction error.

Used in cache_error handler to catch deposit transaction that was halted.

Required Methods§

Source

fn is_tx_error(&self) -> bool

Check if the error is a transaction error.

Implementations on Foreign Types§

Source§

impl<DB, TX> IsTxError for EVMError<DB, TX>

Implementors§