Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
feat(client): significantly increase wasm instance limits (#13298)
Browse files Browse the repository at this point in the history
Following #11949, this PR will allow parachains with runtimes bigger than Kusama to use the pooling strategy.
  • Loading branch information
hussein-aitlahcen authored Feb 3, 2023
1 parent 12823c2 commit 09ae0e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/executor/wasmtime/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 09ae0e0

Please sign in to comment.