increase BitcoinAddressValidator::MaxAddressLength from 34 to 35
authorWladimir J. van der Laan <laanwj@gmail.com>
Wed, 15 Feb 2012 16:08:34 +0000 (17:08 +0100)
committerWladimir J. van der Laan <laanwj@gmail.com>
Wed, 15 Feb 2012 16:09:47 +0000 (17:09 +0100)
needed for sending BIP16 transactions on test network through GUI

src/qt/bitcoinaddressvalidator.h

index 6ca3bd6..9710d12 100644 (file)
@@ -14,7 +14,7 @@ public:
 
     State validate(QString &input, int &pos) const;
 
-    static const int MaxAddressLength = 34;
+    static const int MaxAddressLength = 35;
 signals:
 
 public slots: