mirror of
https://github.com/basicswap/basicswap.git
synced 2025-04-06 14:27:30 +00:00
Update assest and configs
This commit is contained in:
parent
a6df36bf89
commit
68b1803c31
2 changed files with 11 additions and 0 deletions
basicswap
|
@ -913,6 +913,16 @@ class BasicSwap(BaseApp):
|
|||
from .interface.nav import NAVInterface
|
||||
|
||||
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:
|
||||
raise ValueError("Unknown coin type")
|
||||
|
||||
|
@ -940,6 +950,7 @@ class BasicSwap(BaseApp):
|
|||
"dash",
|
||||
"firo",
|
||||
"bitcoincash",
|
||||
"ghost"
|
||||
):
|
||||
pidfilename += "d"
|
||||
|
||||
|
|
Binary file not shown.
Before ![]() (image error) Size: 1.7 KiB After ![]() (image error) Size: 989 B ![]() ![]() |
Loading…
Reference in a new issue