From e71589a2923e734f0ab9e362b6dbd05db257368e Mon Sep 17 00:00:00 2001 From: tecnovert Date: Fri, 3 Jan 2025 22:46:47 +0200 Subject: [PATCH] Rename isCoinActive --- basicswap/basicswap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basicswap/basicswap.py b/basicswap/basicswap.py index 3266043..ccbbb09 100644 --- a/basicswap/basicswap.py +++ b/basicswap/basicswap.py @@ -1187,7 +1187,7 @@ class BasicSwap(BaseApp): if ci.isWalletLocked(): raise LockedCoinError(Coins.PART) - def isCoinActive(self, c) -> bool: + def isBaseCoinActive(self, c) -> bool: if c not in chainparams: return False if self.coin_clients[c]["connection_type"] == "rpc": @@ -1196,7 +1196,7 @@ class BasicSwap(BaseApp): def activeCoins(self): for c in Coins: - if self.isCoinActive(c): + if self.isBaseCoinActive(c): yield c def getListOfWalletCoins(self):