Unverified Commit 2aa46b7e authored by Gavin Wood's avatar Gavin Wood Committed by GitHub
Browse files

Add emojis (#944)

parent c130ab1e
Pipeline #85079 passed with stages
in 23 minutes and 53 seconds
...@@ -41,9 +41,9 @@ async fn start_inner(chain_spec: String, log_level: String) -> Result<Client, Bo ...@@ -41,9 +41,9 @@ async fn start_inner(chain_spec: String, log_level: String) -> Result<Client, Bo
info!("Polkadot browser node"); info!("Polkadot browser node");
info!(" version {}", config.full_version()); info!(" version {}", config.full_version());
info!(" by Parity Technologies, 2017-2020"); info!(" by Parity Technologies, 2017-2020");
info!("Chain specification: {}", config.expect_chain_spec().name()); info!("📋 Chain specification: {}", config.expect_chain_spec().name());
info!("Node name: {}", config.name); info!("🏷 Node name: {}", config.name);
info!("Roles: {:?}", config.roles); info!("👤 Roles: {}", config.roles);
// Create the service. This is the most heavy initialization step. // Create the service. This is the most heavy initialization step.
let service = service::kusama_new_light(config) let service = service::kusama_new_light(config)
......
...@@ -53,12 +53,12 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> { ...@@ -53,12 +53,12 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> {
info!("{}", version.name); info!("{}", version.name);
info!(" version {}", config.full_version()); info!(" version {}", config.full_version());
info!(" by {}, 2017-2020", version.author); info!(" by {}, 2017-2020", version.author);
info!("Chain specification: {}", config.expect_chain_spec().name()); info!("📋 Chain specification: {}", config.expect_chain_spec().name());
info!("Node name: {}", config.name); info!("🏷 Node name: {}", config.name);
info!("Roles: {}", config.display_role()); info!("👤 Roles: {}", config.display_role());
if is_kusama { if is_kusama {
info!("Native runtime: {}", service::KusamaExecutor::native_version().runtime_version); info!("Native runtime: {}", service::KusamaExecutor::native_version().runtime_version);
info!("----------------------------"); info!("----------------------------");
info!("This chain is not in any way"); info!("This chain is not in any way");
info!(" endorsed by the "); info!(" endorsed by the ");
...@@ -71,7 +71,7 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> { ...@@ -71,7 +71,7 @@ pub fn run(version: VersionInfo) -> sc_cli::Result<()> {
service::kusama_runtime::UncheckedExtrinsic, service::kusama_runtime::UncheckedExtrinsic,
>(config, opt.authority_discovery_enabled, grandpa_pause) >(config, opt.authority_discovery_enabled, grandpa_pause)
} else { } else {
info!("Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version); info!("Native runtime: {}", service::PolkadotExecutor::native_version().runtime_version);
run_service_until_exit::< run_service_until_exit::<
service::polkadot_runtime::RuntimeApi, service::polkadot_runtime::RuntimeApi,
......
...@@ -317,7 +317,7 @@ impl<Client, TxPool, Backend> CreateProposalData<Client, TxPool, Backend> where ...@@ -317,7 +317,7 @@ impl<Client, TxPool, Backend> CreateProposalData<Client, TxPool, Backend> where
let (new_block, storage_changes, proof) = block_builder.build()?.into_inner(); let (new_block, storage_changes, proof) = block_builder.build()?.into_inner();
info!("Prepared block for proposing at {} [hash: {:?}; parent_hash: {}; extrinsics: [{}]]", info!("🎁 Prepared block for proposing at {} [hash: {:?}; parent_hash: {}; extrinsics: [{}]]",
new_block.header.number, new_block.header.number,
Hash::from(new_block.header.hash()), Hash::from(new_block.header.hash()),
new_block.header.parent_hash, new_block.header.parent_hash,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment