mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 16:11:05 +00:00
bd9287f766
Basically combines all the recommended calls into one `build_using_defaults()` call or `init_with_defaults()` when there are some custom changes required.
10 lines
247 B
Rust
10 lines
247 B
Rust
#[cfg(feature = "std")]
|
|
fn main() {
|
|
substrate_wasm_builder::WasmBuilder::build_using_defaults();
|
|
}
|
|
|
|
/// The wasm builder is deactivated when compiling
|
|
/// this crate for wasm to speed up the compilation.
|
|
#[cfg(not(feature = "std"))]
|
|
fn main() {}
|