Skip to content
Snippets Groups Projects
Commit f09ea9e6 authored by Hussein Ait-Lahcen's avatar Hussein Ait-Lahcen Committed by GitHub
Browse files

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.
parent e50de7ea
Branches
No related merge requests found
......@@ -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.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment