From e1a266ab869883c69220d29d6ed7de933e907f90 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Thu, 27 Aug 2020 10:10:27 +0300 Subject: [PATCH] smartcontract: increase MaxManifestSize --- pkg/smartcontract/manifest/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/smartcontract/manifest/manifest.go b/pkg/smartcontract/manifest/manifest.go index f2b76e9d7..027c6cd5c 100644 --- a/pkg/smartcontract/manifest/manifest.go +++ b/pkg/smartcontract/manifest/manifest.go @@ -10,7 +10,7 @@ import ( const ( // MaxManifestSize is a max length for a valid contract manifest. - MaxManifestSize = 2048 + MaxManifestSize = 4096 // MethodInit is a name for default initialization method. MethodInit = "_initialize"