Skip to content
Snippets Groups Projects
Commit 916497e5 authored by Éloïs's avatar Éloïs Committed by GitHub
Browse files

Companion for #10177 (Make wasm runtime cache size configurable) (#4466)

* bind param runtime_cache_size

* upgrade substrate

* fix tests compilation
parent 1e774d0f
Branches
No related merge requests found
This diff is collapsed.
......@@ -107,6 +107,7 @@ pub fn new_partial(
config.wasm_method,
config.default_heap_pages,
config.max_runtime_instances,
config.runtime_cache_size,
);
let (client, backend, keystore_container, task_manager) =
......
......@@ -134,6 +134,7 @@ where
config.wasm_method,
config.default_heap_pages,
config.max_runtime_instances,
config.runtime_cache_size,
);
let (client, backend, keystore_container, task_manager) =
......
......@@ -171,6 +171,7 @@ where
config.wasm_method,
config.default_heap_pages,
config.max_runtime_instances,
config.runtime_cache_size,
);
let (client, backend, keystore_container, task_manager) =
......
......@@ -367,6 +367,7 @@ where
config.wasm_method,
config.default_heap_pages,
config.max_runtime_instances,
config.runtime_cache_size,
);
let (client, backend, keystore_container, task_manager) =
......
......@@ -188,6 +188,7 @@ pub fn node_config(
tracing_targets: None,
tracing_receiver: Default::default(),
max_runtime_instances: 8,
runtime_cache_size: 2,
announce_block: true,
base_path: Some(base_path),
informant_output_format: Default::default(),
......
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