From 5ce178e6731ed26e63d24d83b1dc04328139325c Mon Sep 17 00:00:00 2001 From: tecnovert Date: Tue, 13 Dec 2022 07:56:46 +0200 Subject: [PATCH] Fix checkWalletSeed --- basicswap/basicswap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basicswap/basicswap.py b/basicswap/basicswap.py index 1285ee6..a0f93e5 100644 --- a/basicswap/basicswap.py +++ b/basicswap/basicswap.py @@ -1660,7 +1660,7 @@ class BasicSwap(BaseApp): if expect_seedid is None: self.log.warning('Can\'t find expected wallet seed id for coin {}'.format(ci.coin_name())) return False - if len(ci.rpc_callback('listwallets')) < 1: + if c == Coins.BTC and len(ci.rpc_callback('listwallets')) < 1: self.log.warning('Missing wallet for coin {}'.format(ci.coin_name())) return False if ci.checkExpectedSeed(expect_seedid):