Update to latest master & master (#260)

This commit is contained in:
Bastian Köcher
2020-12-04 23:49:12 +01:00
committed by GitHub
parent 233b347a58
commit 092f0e9149
4 changed files with 187 additions and 182 deletions
+2 -2
View File
@@ -217,7 +217,7 @@ pub fn run() -> Result<()> {
})
}
Some(Subcommand::ExportGenesisState(params)) => {
sc_cli::init_logger("", sc_tracing::TracingReceiver::Log, None)?;
sc_cli::init_logger("", sc_tracing::TracingReceiver::Log, None, false)?;
let block: Block = generate_genesis_block(&load_spec(
&params.chain.clone().unwrap_or_default(),
@@ -239,7 +239,7 @@ pub fn run() -> Result<()> {
Ok(())
}
Some(Subcommand::ExportGenesisWasm(params)) => {
sc_cli::init_logger("", sc_tracing::TracingReceiver::Log, None)?;
sc_cli::init_logger("", sc_tracing::TracingReceiver::Log, None, false)?;
let raw_wasm_blob =
extract_genesis_wasm(&cli.load_spec(&params.chain.clone().unwrap_or_default())?)?;