mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
withdraw: fix old variable use
nick is replaced by identity
This commit is contained in:
parent
56e9473f46
commit
98f102f497
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ def Withdraw(link,cmd):
|
||||||
amount = balance
|
amount = balance
|
||||||
|
|
||||||
if amount <= 0 or amount < local_min_withdraw_amount:
|
if amount <= 0 or amount < local_min_withdraw_amount:
|
||||||
log_info("Withdraw: Minimum withdrawal balance: %s, %s cannot withdraw %s" % (AmountToString(config.min_withdraw_amount),nick,AmountToString(amount)))
|
log_info("Withdraw: Minimum withdrawal balance: %s, %s cannot withdraw %s" % (AmountToString(config.min_withdraw_amount),identity,AmountToString(amount)))
|
||||||
link.send("Minimum withdrawal balance: %s, cannot withdraw %s" % (AmountToString(config.min_withdraw_amount),AmountToString(amount)))
|
link.send("Minimum withdrawal balance: %s, cannot withdraw %s" % (AmountToString(config.min_withdraw_amount),AmountToString(amount)))
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue