Enum bdk::Error

source ·
pub enum Error {
Show 45 variants InvalidU32Bytes(Vec<u8>), Generic(String), ScriptDoesntHaveAddressForm, NoRecipients, NoUtxosSelected, OutputBelowDustLimit(usize), InsufficientFunds { needed: u64, available: u64, }, BnBTotalTriesExceeded, BnBNoExactMatch, UnknownUtxo, TransactionNotFound, TransactionConfirmed, IrreplaceableTransaction, FeeRateTooLow { required: FeeRate, }, FeeTooLow { required: u64, }, FeeRateUnavailable, MissingKeyOrigin(String), Key(KeyError), ChecksumMismatch, SpendingPolicyRequired(KeychainKind), InvalidPolicyPathError(PolicyError), Signer(SignerError), InvalidNetwork { requested: Network, found: Network, }, HardenedIndex, Verification(VerifyError), InvalidProgressValue(f32), ProgressUpdateError, InvalidOutpoint(OutPoint), Descriptor(Error), Encode(Error), Miniscript(Error), MiniscriptPsbt(MiniscriptPsbtError), Bip32(Error), Secp256k1(Error), Json(Error), Hex(Error), Psbt(Error), PsbtParse(PsbtParseError), MissingCachedScripts(MissingCachedScripts), Electrum(Error), Esplora(Box<EsploraError>), CompactFilters(CompactFiltersError), Sled(Error), Rpc(Error), Rusqlite(Error),
}
Expand description

Errors that can be thrown by the Wallet

Variants§

§

InvalidU32Bytes(Vec<u8>)

Wrong number of bytes found when trying to convert to u32

§

Generic(String)

Generic error

§

ScriptDoesntHaveAddressForm

This error is thrown when trying to convert Bare and Public key script to address

§

NoRecipients

Cannot build a tx without recipients

§

NoUtxosSelected

manually_selected_only option is selected but no utxo has been passed

§

OutputBelowDustLimit(usize)

Output created is under the dust limit, 546 satoshis

§

InsufficientFunds

Fields

§needed: u64

Sats needed for some transaction

§available: u64

Sats available for spending

Wallet’s UTXO set is not enough to cover recipient’s requested plus fee

§

BnBTotalTriesExceeded

Branch and bound coin selection possible attempts with sufficiently big UTXO set could grow exponentially, thus a limit is set, and when hit, this error is thrown

§

BnBNoExactMatch

Branch and bound coin selection tries to avoid needing a change by finding the right inputs for the desired outputs plus fee, if there is not such combination this error is thrown

§

UnknownUtxo

Happens when trying to spend an UTXO that is not in the internal database

§

TransactionNotFound

Thrown when a tx is not found in the internal database

§

TransactionConfirmed

Happens when trying to bump a transaction that is already confirmed

§

IrreplaceableTransaction

Trying to replace a tx that has a sequence >= 0xFFFFFFFE

§

FeeRateTooLow

Fields

§required: FeeRate

Required fee rate (satoshi/vbyte)

When bumping a tx the fee rate requested is lower than required

§

FeeTooLow

Fields

§required: u64

Required fee absolute value (satoshi)

When bumping a tx the absolute fee requested is lower than replaced tx absolute fee

§

FeeRateUnavailable

Node doesn’t have data to estimate a fee rate

§

MissingKeyOrigin(String)

In order to use the TxBuilder::add_global_xpubs option every extended key in the descriptor must either be a master key itself (having depth = 0) or have an explicit origin provided

§

Key(KeyError)

Error while working with keys

§

ChecksumMismatch

Descriptor checksum mismatch

§

SpendingPolicyRequired(KeychainKind)

Spending policy is not compatible with this KeychainKind

§

InvalidPolicyPathError(PolicyError)

Error while extracting and manipulating policies

§

Signer(SignerError)

Signing error

§

InvalidNetwork

Fields

§requested: Network

requested network, for example what is given as bdk-cli option

§found: Network

found network, for example the network of the bitcoin node

Invalid network

§

HardenedIndex

The address requested comes from an hardened index

§

Verification(VerifyError)

Transaction verification error

§

InvalidProgressValue(f32)

Progress value must be between 0.0 (included) and 100.0 (included)

§

ProgressUpdateError

Progress update error (maybe the channel has been closed)

§

InvalidOutpoint(OutPoint)

Requested outpoint doesn’t exist in the tx (vout greater than available outputs)

§

Descriptor(Error)

Error related to the parsing and usage of descriptors

§

Encode(Error)

Encoding error

§

Miniscript(Error)

Miniscript error

§

MiniscriptPsbt(MiniscriptPsbtError)

Miniscript PSBT error

§

Bip32(Error)

BIP32 error

§

Secp256k1(Error)

A secp256k1 error

§

Json(Error)

Error serializing or deserializing JSON data

§

Hex(Error)

Hex decoding error

§

Psbt(Error)

Partially signed bitcoin transaction error

§

PsbtParse(PsbtParseError)

Partially signed bitcoin transaction parse error

§

MissingCachedScripts(MissingCachedScripts)

crate::blockchain::WalletSync sync attempt failed due to missing scripts in cache which are needed to satisfy stop_gap.

§

Electrum(Error)

Electrum client error

§

Esplora(Box<EsploraError>)

Esplora client error

§

CompactFilters(CompactFiltersError)

Compact filters client error)

§

Sled(Error)

Sled database error

§

Rpc(Error)

Rpc client error

§

Rusqlite(Error)

Rusqlite client error

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<CompactFiltersError> for Error

source§

fn from(other: CompactFiltersError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for CompactFiltersError

Available on crate feature compact_filters only.
source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(other: EsploraError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for VerifyError

Available on crate feature verify only.
source§

fn from(other: Error) -> Self

Converts to this type from the input type.
source§

impl From<KeyError> for Error

source§

fn from(key_error: KeyError) -> Error

Converts to this type from the input type.
source§

impl From<PolicyError> for Error

source§

fn from(err: PolicyError) -> Self

Converts to this type from the input type.
source§

impl From<PsbtParseError> for Error

source§

fn from(err: PsbtParseError) -> Self

Converts to this type from the input type.
source§

impl From<SignerError> for Error

source§

fn from(err: SignerError) -> Self

Converts to this type from the input type.
source§

impl From<VerifyError> for Error

source§

fn from(other: VerifyError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V