Skip to content

Commit

Permalink
chore: wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimplekid committed Nov 8, 2024
1 parent aa3924b commit 4adfc3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/cdk-js/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl JsWallet {
) -> Result<JsMintQuote> {
let quote = self
.inner
.mint_quote(amount.into(), description)
.mint_quote(amount.into(), description, None)
.await
.map_err(into_err)?;

Expand Down Expand Up @@ -142,7 +142,7 @@ impl JsWallet {

Ok(self
.inner
.mint(&quote_id, target, conditions)
.mint(&quote_id, target, conditions, None)
.await
.map_err(into_err)?
.into())
Expand Down

0 comments on commit 4adfc3f

Please sign in to comment.