mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
Gav display addrs (#267)
* Tidy up warnings * Better Display for AccountId
This commit is contained in:
@@ -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(),
|
||||
|
||||
@@ -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()));
|
||||
|
||||
Reference in New Issue
Block a user