mirror of
https://github.com/basicswap/basicswap.git
synced 2025-01-03 17:29:26 +00:00
Update assest and configs
This commit is contained in:
parent
39141f7e8d
commit
808900a03a
2 changed files with 11 additions and 0 deletions
|
@ -860,6 +860,16 @@ class BasicSwap(BaseApp):
|
||||||
from .interface.nav import NAVInterface
|
from .interface.nav import NAVInterface
|
||||||
|
|
||||||
return NAVInterface(self.coin_clients[coin], self.chain, self)
|
return NAVInterface(self.coin_clients[coin], self.chain, self)
|
||||||
|
|
||||||
|
elif coin == Coins.GHOST:
|
||||||
|
interface = PARTInterface(self.coin_clients[coin], self.chain, self)
|
||||||
|
self.coin_clients[coin]["interface_anon"] = PARTInterfaceAnon(
|
||||||
|
self.coin_clients[coin], self.chain, self
|
||||||
|
)
|
||||||
|
self.coin_clients[coin]["interface_blind"] = PARTInterfaceBlind(
|
||||||
|
self.coin_clients[coin], self.chain, self
|
||||||
|
)
|
||||||
|
return interface
|
||||||
else:
|
else:
|
||||||
raise ValueError("Unknown coin type")
|
raise ValueError("Unknown coin type")
|
||||||
|
|
||||||
|
@ -886,6 +896,7 @@ class BasicSwap(BaseApp):
|
||||||
"dash",
|
"dash",
|
||||||
"firo",
|
"firo",
|
||||||
"bitcoincash",
|
"bitcoincash",
|
||||||
|
"ghost"
|
||||||
):
|
):
|
||||||
pidfilename += "d"
|
pidfilename += "d"
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 989 B |
Loading…
Reference in a new issue