diff --git a/tipbot/modules/withdraw.py b/tipbot/modules/withdraw.py index f56c9c2..ecdcffe 100644 --- a/tipbot/modules/withdraw.py +++ b/tipbot/modules/withdraw.py @@ -237,6 +237,8 @@ def Withdraw(link,cmd): def Resolve(link,cmd): try: address=GetParam(cmd,1) + if not address: + raise RuntimeError("") except Exception,e: link.send('usage: !resolve
') return