pub trait BitcoinRpcErrorExt: Borrow<Error> {
// Provided methods
fn is_not_found(&self) -> bool { ... }
fn is_in_utxo_set(&self) -> bool { ... }
fn is_already_in_mempool(&self) -> bool { ... }
}Provided Methods§
Sourcefn is_not_found(&self) -> bool
fn is_not_found(&self) -> bool
Whether this error indicates that the tx was not found.
Sourcefn is_in_utxo_set(&self) -> bool
fn is_in_utxo_set(&self) -> bool
Whether this error indicates that the tx is already in the utxo set.