From 7657419b2208e06a1ffa144b10b2b388871d4928 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 0814e7eb..40ba0eef 100644 --- a/txscript/engine.go +++ b/txscript/engine.go @@ -103,7 +103,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.