Revert "fix: creating auth keyset when auth disabled"

This commit is contained in:
thesimplekid
2025-06-24 13:34:28 +01:00
committed by GitHub
parent ee1a978285
commit dbadfc35b8
3 changed files with 5 additions and 11 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(())