mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
withdraw: fix withdraw with no amount nor payment id
This commit is contained in:
parent
699cec1b7e
commit
5d1bbfc6a0
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ def Withdraw(link,cmd):
|
|||
amount = GetParam(cmd,2)
|
||||
paymentid = GetParam(cmd,3)
|
||||
else:
|
||||
if IsValidPaymentID(GetParam(cmd,2)):
|
||||
if GetParam(cmd,2) and IsValidPaymentID(GetParam(cmd,2)):
|
||||
amount = None
|
||||
paymentid = GetParam(cmd,2)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue