Rework the runtime upgrade test (#727)

* Rework the runtime upgrade test

* Update test/service/tests/runtime_upgrade.rs

* Update test/service/tests/runtime_upgrade.rs

* Update Cargo.lock

* FMT

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
Bastian Köcher
2021-11-09 15:02:34 +01:00
committed by GitHub
parent e304662f04
commit 6b4fd91ad5
10 changed files with 2610 additions and 1399 deletions
+8 -1
View File
@@ -21,5 +21,12 @@ fn main() {
.with_current_project()
.export_heap_base()
.import_memory()
.build()
.build();
WasmBuilder::new()
.with_current_project()
.enable_feature("increment-spec-version")
.import_memory()
.set_file_name("wasm_binary_spec_version_incremented.rs")
.build();
}