mirror of
https://github.com/basicswap/basicswap.git
synced 2025-01-09 12:19:29 +00:00
doge: basicswap.py
This commit is contained in:
parent
b1401ee00b
commit
d2733b704d
1 changed files with 5 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue