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§
Sourcefn is_tx_error(&self) -> bool
fn is_tx_error(&self) -> bool
Check if the error is a transaction error.