From 3ff5c056cf9fc6b41da38345e9df1e7e3f8985a3 Mon Sep 17 00:00:00 2001 From: Federico Cardoso Date: Thu, 13 Oct 2016 22:00:02 -0300 Subject: [PATCH] Updated OP_RETURN_MAX_BYTES to 80 bytes --- OP_RETURN.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OP_RETURN.py b/OP_RETURN.py index 81f8ade..46678b1 100644 --- a/OP_RETURN.py +++ b/OP_RETURN.py @@ -50,7 +50,7 @@ OP_RETURN_BTC_FEE=0.0001 # BTC fee to pay per transaction OP_RETURN_BTC_DUST=0.00001 # omit BTC outputs smaller than this -OP_RETURN_MAX_BYTES=40 # maximum bytes in an OP_RETURN (40 as of Bitcoin 0.10) +OP_RETURN_MAX_BYTES=80 # maximum bytes in an OP_RETURN (40 as of Bitcoin 0.11) OP_RETURN_MAX_BLOCKS=10 # maximum number of blocks to try when retrieving data OP_RETURN_NET_TIMEOUT=10 # how long to time out (in seconds) when communicating with bitcoin node