Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
A couple spaces where emojis were improperly laid out (#959)
Browse files Browse the repository at this point in the history
* Fixes for democracy using Scheduler

* Revert branch change

* Emojis
  • Loading branch information
gavofyork authored Apr 1, 2020
1 parent 639dfd6 commit fb358e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/src/browser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async fn start_inner(chain_spec: String, log_level: String) -> Result<Client, Bo
info!(" version {}", config.full_version());
info!(" by Parity Technologies, 2017-2020");
info!("πŸ“‹ Chain specification: {}", config.expect_chain_spec().name());
info!("🏷 Node name: {}", config.name);
info!("🏷 Node name: {}", config.name);
info!("πŸ‘€ Roles: {}", config.roles);

// Create the service. This is the most heavy initialization step.
Expand Down
6 changes: 3 additions & 3 deletions cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ pub fn run(version: VersionInfo) -> 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 ");
Expand All @@ -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,
Expand Down

0 comments on commit fb358e8

Please sign in to comment.