From 44617b5a4f5472deba2c74bd28e35ec95c470392 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Wed, 5 Aug 2020 13:13:52 -0700 Subject: [PATCH] add another length for addresses --- tipbot/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tipbot/commands.py b/tipbot/commands.py index e0b1bfe..e2221f1 100644 --- a/tipbot/commands.py +++ b/tipbot/commands.py @@ -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.')