Added missing config variables pointed out by ji

This commit is contained in:
Dionysus 2022-11-23 20:29:25 -05:00
parent 9230666d49
commit 98b10c89ad
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
2 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,7 @@ class connection:
class cert:
key = None
password = None
file = None
class ident:
nickname = 'IRCCEX'
@ -43,4 +44,6 @@ class limits:
class fees:
cashout = 0.02 # 2%
send = 0.01 # 1%
trade = 0.001 # 0.1%
trade = 0.001 # 0.1%
CMC_API_KEY = None # https://coinmarketcap.com/api/

View File

@ -334,6 +334,7 @@ class Events:
value = 'JACKED'
if value == 'JACKED':
Commands.sendmsg(chan, symbol + ' was JACKED sucka!')
del Bot.db['wallet'][nick][symbol]
else:
Commands.sendmsg(chan, f' {symbol.ljust(8)} | {str(functions.clean_float(amount)).rjust(20)} | {str(functions.clean_value(value)).rjust(20)}')
total += float(value)