Add an initial Substrate instantiation

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.
This commit is contained in:
Luke Parker
2022-07-15 00:05:00 -04:00
parent 5ede5b9e8f
commit 0b879a53fa
22 changed files with 2094 additions and 658 deletions

View File

@@ -0,0 +1,13 @@
mod chain_spec;
#[macro_use]
mod service;
mod command_helper;
mod command;
mod rpc;
mod cli;
fn main() -> sc_cli::Result<()> {
command::run()
}