From db6550cc380a5bb38feba2b319ebd4512b163610 Mon Sep 17 00:00:00 2001 From: Roy Lee Date: Tue, 5 Jun 2018 10:32:45 -0700 Subject: [PATCH] [lbry] txscript: change MaxScriptSize from 10,000 to 20,005 --- txscript/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txscript/engine.go b/txscript/engine.go index f2d7b303..b6981c8c 100644 --- a/txscript/engine.go +++ b/txscript/engine.go @@ -102,7 +102,7 @@ const ( MaxStackSize = 1000 // MaxScriptSize is the maximum allowed length of a raw script. - MaxScriptSize = 10000 + MaxScriptSize = 20005 // payToWitnessPubKeyHashDataSize is the size of the witness program's // data push for a pay-to-witness-pub-key-hash output.