Remove substrate/node lib.rs

This shouldn't be used as a library AFAIK. While runtime should be, and 
arguably should even be published, I have yet to see node in the same 
way. Helps tighten API boundaries.
This commit is contained in:
Luke Parker 2022-10-21 05:56:53 -04:00
parent 0218db0084
commit 802f87385c
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
2 changed files with 1 additions and 4 deletions

View file

@ -117,7 +117,7 @@ pub fn run() -> sc_cli::Result<()> {
}
BenchmarkCmd::Extrinsic(cmd) => {
let PartialComponents { client, .. } = service::new_partial(&config)?;
let client = service::new_partial(&config)?.client;
cmd.run(
client.clone(),
inherent_benchmark_data()?,

View file

@ -1,3 +0,0 @@
pub mod chain_spec;
pub mod rpc;
pub mod service;