Update assest and configs

This commit is contained in:
Sonkeng Maldini 2024-12-18 18:03:57 +01:00
parent 39141f7e8d
commit 808900a03a
No known key found for this signature in database
GPG key ID: 1A20E75BFFD23E77
2 changed files with 11 additions and 0 deletions

View file

@ -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