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

Commit

Permalink
Companion for Substrate#14228
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr committed May 25, 2023
1 parent dfab533 commit c31f739
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion parachain/test-parachains/adder/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@
use substrate_wasm_builder::WasmBuilder;

fn main() {
WasmBuilder::new().with_current_project().export_heap_base().build()
WasmBuilder::new()
.with_current_project()
.export_heap_base()
.disable_runtime_version_section_check()
.build()
}
6 changes: 5 additions & 1 deletion parachain/test-parachains/halt/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
use substrate_wasm_builder::WasmBuilder;

fn main() {
WasmBuilder::new().with_current_project().export_heap_base().build();
WasmBuilder::new()
.with_current_project()
.export_heap_base()
.disable_runtime_version_section_check()
.build();

enable_alloc_error_handler();
}
Expand Down
6 changes: 5 additions & 1 deletion parachain/test-parachains/undying/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@
use substrate_wasm_builder::WasmBuilder;

fn main() {
WasmBuilder::new().with_current_project().export_heap_base().build()
WasmBuilder::new()
.with_current_project()
.export_heap_base()
.disable_runtime_version_section_check()
.build()
}

0 comments on commit c31f739

Please sign in to comment.