aboutsummaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorFlavien Charlon <flavien@charlon.net>2014-11-14 10:20:58 +0000
committerFlavien Charlon <flavien@charlon.net>2014-11-14 10:20:58 +0000
commita9306587a42eac7fb889b9c8d03140980fdf1398 (patch)
tree24100430efe33b4effc6ecebf7985229a66877f9 /src/script
parent3d3ce7421e11ed693840e04bee4d18fb9d396309 (diff)
downloadbitcoin-a9306587a42eac7fb889b9c8d03140980fdf1398.tar.xz
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/script')
-rw-r--r--src/script/standard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/standard.h b/src/script/standard.h
index f3dcc75fdc..f4446b0fe4 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;
/**