Merge pull request #1365 from nspcc-dev/smartcontract/max_manifest_size

smartcontract: increase MaxManifestSize
This commit is contained in:
Roman Khimov 2020-08-27 12:54:02 +03:00 committed by GitHub
commit ed2061fd24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"