Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
2aa46b7e
Unverified
Commit
2aa46b7e
authored
Mar 26, 2020
by
Gavin Wood
Committed by
GitHub
Mar 26, 2020
Browse files
Add emojis (#944)
parent
c130ab1e
Pipeline
#85079
passed with stages
in 23 minutes and 53 seconds
Changes
3
Pipelines
2
Show whitespace changes
Inline
Side-by-side
cli/src/browser.rs
View file @
2aa46b7e
...
@@ -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
)
...
...
cli/src/command.rs
View file @
2aa46b7e
...
@@ -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
,
...
...
validation/src/block_production.rs
View file @
2aa46b7e
...
@@ -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
,
...
...
Ghost User
@ghost
mentioned in commit
56f53047
·
Mar 27, 2020
mentioned in commit
56f53047
mentioned in commit 56f53047c14607d93dd8358964d3a9eef0ed9adc
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment