From 1d80f479c02c2d6545b354bb91dc4375f5d5a3fd Mon Sep 17 00:00:00 2001 From: gerlofvanek Date: Tue, 28 Apr 2026 09:34:01 +0200 Subject: [PATCH] Fix CI test --- basicswap/basicswap.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/basicswap/basicswap.py b/basicswap/basicswap.py index ff5aee6..daeeb38 100644 --- a/basicswap/basicswap.py +++ b/basicswap/basicswap.py @@ -1659,7 +1659,10 @@ class BasicSwap(BaseApp, BSXNetwork, UIApp): for c in check_coins: ci = self.ci(c) if self._restrict_unknown_seed_wallets and not ci.knownWalletSeed(): - self.checkWalletSeed(c) + try: + self.checkWalletSeed(c) + except Exception as e: + self.log.debug(f"checkWalletSeed failed for {ci.coin_name()}: {e}") if not ci.knownWalletSeed(): raise ValueError( '{} has an unexpected wallet seed and "restrict_unknown_seed_wallets" is enabled.'.format(