Tweak the Substrate runtime as required by the Rust version bump performed

This commit is contained in:
Luke Parker
2025-08-08 23:58:25 -04:00
parent bb726b58af
commit 23f986f57a
2 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
use substrate_wasm_builder::WasmBuilder;
fn main() {
WasmBuilder::new().with_current_project().export_heap_base().import_memory().build()
WasmBuilder::new()
.with_current_project()
.disable_runtime_version_section_check()
.export_heap_base()
.import_memory()
.build()
}