Multiply default wasm size by 2

This commit is contained in:
orkunkl
2021-07-02 11:50:40 +03:00
parent d2e35c249e
commit 544eaddf9b

View File

@@ -16,7 +16,7 @@ const (
// DefaultParamspace for params keeper
DefaultParamspace = ModuleName
// DefaultMaxWasmCodeSize limit max bytes read to prevent gzip bombs
DefaultMaxWasmCodeSize = 600 * 1024
DefaultMaxWasmCodeSize = 600 * 1024 * 2
)
var ParamStoreKeyUploadAccess = []byte("uploadAccess")