Trait InvalidTxError

pub trait InvalidTxError:
    Error
    + Send
    + Sync
    + 'static {
    // Required method
    fn is_nonce_too_low(&self) -> bool;
}
Expand description

Abstraction over transaction validation error.

Required Methods§

fn is_nonce_too_low(&self) -> bool

Returns whether the error cause by transaction having a nonce lower than expected.

Implementors§