diff --git a/cli/src/browser.rs b/cli/src/browser.rs index 317cf98af84d..031a8a4ad6a9 100644 --- a/cli/src/browser.rs +++ b/cli/src/browser.rs @@ -42,7 +42,7 @@ async fn start_inner(chain_spec: String, log_level: String) -> Result sc_cli::Result<()> { info!(" version {}", config.full_version()); info!(" by {}, 2017-2020", version.author); info!("📋 Chain specification: {}", config.expect_chain_spec().name()); - info!("🏷 Node name: {}", config.name); + info!("🏷 Node name: {}", config.name); info!("👤 Roles: {}", config.display_role()); if is_kusama { - info!("⛓ Native runtime: {}", service::KusamaExecutor::native_version().runtime_version); + info!("⛓ Native runtime: {}", service::KusamaExecutor::native_version().runtime_version); info!("----------------------------"); info!("This chain is not in any way"); info!(" endorsed by the "); @@ -71,7 +71,7 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> { service::kusama_runtime::UncheckedExtrinsic, >(config, opt.authority_discovery_enabled, grandpa_pause) } else { - info!("⛓ Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version); + info!("⛓ Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version); run_service_until_exit::< service::polkadot_runtime::RuntimeApi,