Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/rs-platform-wallet/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ pub enum PlatformWalletError {
#[error("Transaction builder selected an unavailable UTXO (concurrent spend); retry")]
ConcurrentSpendConflict,

#[error(
"no spendable inputs available for {context} \
(other in-flight transactions reserved the wallet's UTXOs; retry once they confirm)"
)]
NoSpendableInputs { context: String },

#[error("Asset lock proof waiting failed: {0}")]
AssetLockProofWait(String),

Expand Down
Loading
Loading