Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Fix left over small grumbles on whitespaces #10084

Merged
merged 1 commit into from
Dec 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ethcore/src/client/chain_notify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub struct NewBlocks {

impl NewBlocks {
/// Constructor
pub fn new (
pub fn new(
imported: Vec<H256>,
invalid: Vec<H256>,
route: ChainRoute,
Expand All @@ -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
}

Expand Down