From 78ba54da6bf89eff7338fe7c06d3de4d9dddeb60 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Thu, 20 Dec 2018 21:28:32 +0800 Subject: [PATCH] Fix left over small grumbles on whitespaces (#10084) --- ethcore/src/client/chain_notify.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/src/client/chain_notify.rs b/ethcore/src/client/chain_notify.rs index 4b599ad17..47a77397d 100644 --- a/ethcore/src/client/chain_notify.rs +++ b/ethcore/src/client/chain_notify.rs @@ -134,7 +134,7 @@ pub struct NewBlocks { impl NewBlocks { /// Constructor - pub fn new ( + pub fn new( imported: Vec, invalid: Vec, route: ChainRoute, @@ -158,7 +158,7 @@ impl NewBlocks { /// Represents what has to be handled by actor listening to chain events pub trait ChainNotify : Send + Sync { /// fires when chain has new blocks. - fn new_blocks( &self, _new_blocks: NewBlocks) { + fn new_blocks(&self, _new_blocks: NewBlocks) { // does nothing by default }