From 0929e45320246b6a6f02d4f0b9ff44623dc9f5cc Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 13 Jul 2018 12:13:03 +0200 Subject: [PATCH] More timely block import notifications (#306) * More timely block import notifications * Grumbles. * More wrapping * Fix build * Fixes --- polkadot/cli/src/informant.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/polkadot/cli/src/informant.rs b/polkadot/cli/src/informant.rs index 6b43d4ffad..9146decf62 100644 --- a/polkadot/cli/src/informant.rs +++ b/polkadot/cli/src/informant.rs @@ -63,7 +63,6 @@ pub fn start(service: &Service, exit: ::exit_future::Exit, handle: TaskExe let client = service.client(); let display_block_import = client.import_notification_stream().for_each(|n| { info!(target: "polkadot", "Imported #{} ({})", n.header.number, n.hash); - telemetry!("block.import"; "height" => n.header.number, "best" => ?n.hash); Ok(()) });