mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
0b879a53fa
Consensus has been nuked for an AcceptAny currently routed throough PoW (when it doesn't have to be, doing so just took care of a few pieces of leg work). Updates AGPL handling.
9 lines
163 B
Rust
9 lines
163 B
Rust
use substrate_wasm_builder::WasmBuilder;
|
|
|
|
fn main() {
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.export_heap_base()
|
|
.import_memory()
|
|
.build()
|
|
}
|