walto/repuchain-node/runtime/build.rs

11 lines
173 B
Rust

fn main() {
#[cfg(feature = "std")]
{
substrate_wasm_builder::WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.build();
}
}