Gui fixes to bitcoincash

This commit is contained in:
mainnet-pat
2024-10-30 13:25:25 +00:00
committed by tecnovert
parent 465f910812
commit ed80caf532
5 changed files with 6 additions and 1 deletions

View File

@@ -68,6 +68,8 @@ class CoinInterface:
coin_chainparams = chainparams[self.coin_type()]
if coin_chainparams.get('use_ticker_as_name', False):
return coin_chainparams['ticker']
if coin_chainparams['name'] == 'bitcoincash':
return 'Bitcoin Cash'
return coin_chainparams['name'].capitalize()
def ticker(self) -> str: