Configure internal Wallets of a MultiMintWallet (#1177)

This commit is contained in:
David Caseria
2025-10-13 04:53:48 -04:00
committed by GitHub
parent f173b2da47
commit 5caa7d58ed
9 changed files with 424 additions and 72 deletions

View File

@@ -34,7 +34,7 @@ pub async fn get_or_create_wallet(
Some(wallet) => Ok(wallet.clone()),
None => {
tracing::debug!("Wallet does not exist creating..");
multi_mint_wallet.add_mint(mint_url.clone(), None).await?;
multi_mint_wallet.add_mint(mint_url.clone()).await?;
Ok(multi_mint_wallet
.get_wallet(mint_url)
.await