Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Oct 25, 2024
1 parent 77b89b7 commit 9ec396d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sage-wallet/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ impl Wallet {
reuse: bool,
) -> Result<(Vec<CoinSpend>, Nft<Program>), WalletError> {
let Some(nft) = self.db.nft(nft_id).await? else {
return Err(WalletError::MissingDid(nft_id));
return Err(WalletError::MissingNft(nft_id));
};

let total_amount = fee as u128 + 1;
Expand Down

0 comments on commit 9ec396d

Please sign in to comment.