Set eur as default currency in coins module

This commit is contained in:
Nils Schweinsberg 2017-10-15 02:48:58 +02:00
parent e8a2b32f41
commit e00636de02

View File

@ -42,7 +42,7 @@ class Coins(Plugin):
return self.cryptowat_summary('xmr', 'bitfinex', args)
def cryptowat_summary(self, crypto: str, market: str, args: Dict):
currency = args.get('<currency>', 'usd').lower()
currency = args.get('<currency>', 'eur').lower()
if currency not in self.CURRENCIES or crypto == currency:
return '\x02[{}]\x02 Can\'t convert or invalid currency: {}'.format(crypto.upper(), currency)