doge: basicswap.py

This commit is contained in:
nahuhh 2024-11-28 17:56:25 +00:00 committed by tecnovert
parent b1401ee00b
commit d2733b704d

View file

@ -822,6 +822,10 @@ class BasicSwap(BaseApp):
self.coin_clients[coin], self.chain, self
)
return interface
elif coin == Coins.DOGE:
from .interface.doge import DOGEInterface
return DOGEInterface(self.coin_clients[coin], self.chain, self)
elif coin == Coins.DCR:
from .interface.dcr import DCRInterface
@ -882,6 +886,7 @@ class BasicSwap(BaseApp):
if cc["name"] in (
"bitcoin",
"litecoin",
"dogecoin",
"namecoin",
"dash",
"firo",