fix: creating auth keyset when auth disabled

This commit is contained in:
thesimplekid
2025-06-20 13:41:31 +01:00
parent c61fd3830a
commit cbb2d5f802
3 changed files with 11 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ pub async fn check_pending(multi_mint_wallet: &MultiMintWallet) -> Result<()> {
// Try to reclaim any proofs that are no longer pending
match wallet.reclaim_unspent(pending_proofs).await {
Ok(()) => println!("Successfully reclaimed pending proofs"),
Err(e) => println!("Error reclaimed pending proofs: {}", e),
Err(e) => println!("Error reclaimed pending proofs: {e}"),
}
}
Ok(())