diff options
| author | Flavien Charlon <[email protected]> | 2014-11-14 10:20:58 +0000 |
|---|---|---|
| committer | Flavien Charlon <[email protected]> | 2014-11-14 10:20:58 +0000 |
| commit | a9306587a42eac7fb889b9c8d03140980fdf1398 (patch) | |
| tree | 24100430efe33b4effc6ecebf7985229a66877f9 /src | |
| parent | Merge pull request #5198 (diff) | |
| download | discoin-a9306587a42eac7fb889b9c8d03140980fdf1398.tar.xz discoin-a9306587a42eac7fb889b9c8d03140980fdf1398.zip | |
Change the default maximum OP_RETURN size to 80 bytes
The value can be changed through the '-datacarriersize' option, this
is modifying the default value for that option.
Diffstat (limited to 'src')
| -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 f3dcc75fd..f4446b0fe 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; /** |