diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-02-03 13:12:40 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-02-03 13:12:44 +0100 |
| commit | fcf646c9b08e7f846d6c99314f937ace50809d7a (patch) | |
| tree | 0b105ce721266dd4f00795d006b72e5233739385 /src/script | |
| parent | Merge pull request #5732 (diff) | |
| parent | Update the 'test_IsStandard' unit test (diff) | |
| download | discoin-fcf646c9b08e7f846d6c99314f937ace50809d7a.tar.xz discoin-fcf646c9b08e7f846d6c99314f937ace50809d7a.zip | |
Merge pull request #5286
44e9a6b Update the 'test_IsStandard' unit test (Flavien Charlon)
a930658 Change the default maximum OP_RETURN size to 80 bytes (Flavien Charlon)
Diffstat (limited to 'src/script')
| -rw-r--r-- | src/script/standard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/standard.h b/src/script/standard.h index 92e2c27c1..a8b0acc98 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -25,7 +25,7 @@ public: CScriptID(const uint160& in) : uint160(in) {} }; -static const unsigned int MAX_OP_RETURN_RELAY = 40; //! bytes +static const unsigned int MAX_OP_RETURN_RELAY = 80; //! bytes extern unsigned nMaxDatacarrierBytes; /** |