Made the error message for verifymessage more transparent
authorMaran <maran.hidskes@gmail.com>
Sun, 26 Aug 2012 21:35:38 +0000 (23:35 +0200)
committerMaran <maran.hidskes@gmail.com>
Sun, 26 Aug 2012 21:35:38 +0000 (23:35 +0200)
electrum

index 0e2b865..1454e9e 100755 (executable)
--- a/electrum
+++ b/electrum
@@ -535,7 +535,8 @@ if __name__ == '__main__':
         try:
             wallet.verify_message(address, signature, message)
             print True
-        except:
+        except BaseException as e:
+            print "Verification error: {0}".format(e)
             print False
 
     elif cmd == 'freeze':