Wasm execution optimizations (#466)

* WASM execution optimizations

* Dropped min-heap-pages

* Fixed tests

* Fixed tests 2
This commit is contained in:
Arkadiy Paronyan
2018-08-01 13:29:45 +02:00
committed by Gav Wood
parent 075f3f34d5
commit f5aa4f6f79
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -200,7 +200,7 @@ mod tests {
timestamp: Some(Default::default()),
};
::client::new_in_mem(LocalDispatch::with_heap_pages(8, 8), genesis_config).unwrap()
::client::new_in_mem(LocalDispatch::with_heap_pages(8), genesis_config).unwrap()
}
#[test]
+1 -1
View File
@@ -6,7 +6,7 @@ description = "Types and utilities for creating and working with parachains"
[dependencies]
substrate-codec = { path = "../../substrate/codec", default-features = false }
wasmi = { version = "0.3", optional = true }
wasmi = { version = "0.4", optional = true }
error-chain = { version = "0.12", optional = true }
[dev-dependencies]