aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-02-15 17:08:34 +0100
committerWladimir J. van der Laan <[email protected]>2012-02-15 17:09:47 +0100
commitc85c37acb16df6c8911c81689932890eec6864a3 (patch)
treefebf8b64b52efaa5bd16d7a9be2b98af6c2a9391 /src
parentMerge pull request #807 from TheBlueMatt/bip21 (diff)
downloaddiscoin-c85c37acb16df6c8911c81689932890eec6864a3.tar.xz
discoin-c85c37acb16df6c8911c81689932890eec6864a3.zip
increase BitcoinAddressValidator::MaxAddressLength from 34 to 35
needed for sending BIP16 transactions on test network through GUI
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoinaddressvalidator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoinaddressvalidator.h b/src/qt/bitcoinaddressvalidator.h
index 6ca3bd6a0..9710d122b 100644
--- a/src/qt/bitcoinaddressvalidator.h
+++ b/src/qt/bitcoinaddressvalidator.h
@@ -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: