mirror of
https://github.com/basicswap/basicswap.git
synced 2025-01-09 20:30:28 +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
|
self.coin_clients[coin], self.chain, self
|
||||||
)
|
)
|
||||||
return interface
|
return interface
|
||||||
|
elif coin == Coins.DOGE:
|
||||||
|
from .interface.doge import DOGEInterface
|
||||||
|
|
||||||
|
return DOGEInterface(self.coin_clients[coin], self.chain, self)
|
||||||
elif coin == Coins.DCR:
|
elif coin == Coins.DCR:
|
||||||
from .interface.dcr import DCRInterface
|
from .interface.dcr import DCRInterface
|
||||||
|
|
||||||
|
@ -882,6 +886,7 @@ class BasicSwap(BaseApp):
|
||||||
if cc["name"] in (
|
if cc["name"] in (
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
"litecoin",
|
"litecoin",
|
||||||
|
"dogecoin",
|
||||||
"namecoin",
|
"namecoin",
|
||||||
"dash",
|
"dash",
|
||||||
"firo",
|
"firo",
|
||||||
|
|
Loading…
Reference in a new issue