feat(client): significantly increase wasm instance limits (#13298)

Following https://github.com/paritytech/substrate/issues/11949, this PR will allow parachains with runtimes bigger than Kusama to use the pooling strategy.
This commit is contained in:
Hussein Ait-Lahcen
2023-02-03 15:21:24 +01:00
committed by GitHub
parent e50de7ea7f
commit f09ea9e6f3
@@ -376,8 +376,8 @@ fn common_config(semantics: &Semantics) -> std::result::Result<wasmtime::Config,
// size: 32384
// table_elements: 1249
// memory_pages: 2070
size: 64 * 1024,
table_elements: 3072,
size: 128 * 1024,
table_elements: 8192,
memory_pages,
// We can only have a single of those.