diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-15 17:08:34 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-15 17:09:47 +0100 |
| commit | c85c37acb16df6c8911c81689932890eec6864a3 (patch) | |
| tree | febf8b64b52efaa5bd16d7a9be2b98af6c2a9391 | |
| parent | Merge pull request #807 from TheBlueMatt/bip21 (diff) | |
| download | discoin-c85c37acb16df6c8911c81689932890eec6864a3.tar.xz discoin-c85c37acb16df6c8911c81689932890eec6864a3.zip | |
increase BitcoinAddressValidator::MaxAddressLength from 34 to 35
needed for sending BIP16 transactions on test network through GUI
| -rw-r--r-- | src/qt/bitcoinaddressvalidator.h | 2 |
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: |