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

Companion for Substrate#14228 #7295

Merged
merged 3 commits into from
May 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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()
}