mirror of
https://git.wownero.com/lza_menace/tg-bot.git
synced 2024-08-15 00:23:12 +00:00
add another length for addresses
This commit is contained in:
parent
66159e96b8
commit
44617b5a4f
1 changed files with 1 additions and 1 deletions
|
@ -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.')
|
||||
|
|
Loading…
Reference in a new issue