fixing accepted address lengths for shitty validation

This commit is contained in:
lza_menace 2020-08-05 21:26:19 -07:00
parent 44617b5a4f
commit 4d9f1ab2df
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ def send(update, context):
return False
# validate address
if len(context.args[0]) in [97, 107, 109]:
if len(context.args[0]) in [97, 108]:
address = context.args[0]
else:
update.message.reply_text('This does not look like a valid Wownero address. Try again.')