Gav display addrs (#267)

* Tidy up warnings

* Better Display for AccountId
This commit is contained in:
Gav Wood
2018-06-29 17:50:53 +02:00
committed by GitHub
parent 4403d8a89e
commit 530340f531
3 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ impl Components for FullComponents {
// Load the first available key
let key = keystore.load(&keystore.contents()?[0], "")?;
info!("Using authority key {:?}", key.public());
info!("Using authority key: {}", key.public());
Ok(Some(consensus::Service::new(
client.clone(),
client.clone(),
+1 -1
View File
@@ -125,7 +125,7 @@ impl<Components> Service<Components>
let api = components.build_api(client.clone());
let best_header = client.best_block_header()?;
info!("Best block is #{}", best_header.number);
info!("Best block: #{}", best_header.number);
telemetry!("node.start"; "height" => best_header.number, "best" => ?best_header.hash());
let transaction_pool = Arc::new(TransactionPool::new(config.transaction_pool, api.clone()));