add another length for addresses

This commit is contained in:
lza_menace 2020-08-05 13:13:52 -07:00
parent 66159e96b8
commit 44617b5a4f
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]:
if len(context.args[0]) in [97, 107, 109]:
address = context.args[0]
else:
update.message.reply_text('This does not look like a valid Wownero address. Try again.')