mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
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.
14 lines
149 B
Rust
14 lines
149 B
Rust
mod chain_spec;
|
|
#[macro_use]
|
|
mod service;
|
|
|
|
mod command_helper;
|
|
mod command;
|
|
|
|
mod rpc;
|
|
mod cli;
|
|
|
|
fn main() -> sc_cli::Result<()> {
|
|
command::run()
|
|
}
|