diff --git a/cashu/wallet/wallet.py b/cashu/wallet/wallet.py index 8568631..dd5e0b1 100644 --- a/cashu/wallet/wallet.py +++ b/cashu/wallet/wallet.py @@ -213,7 +213,11 @@ class LedgerAPI: """ await self._load_mint_keys(keyset_id) await self._load_mint_keysets() - await self._load_mint_info() + try: + await self._load_mint_info() + except Exception as e: + logger.debug(f"Could not load mint info: {e}") + pass if keyset_id: assert keyset_id in self.keysets, f"keyset {keyset_id} not active on mint"