From ffae847b48a260789e265ca1e2bec83459101d26 Mon Sep 17 00:00:00 2001 From: Arkadiy Paronyan Date: Sat, 2 Sep 2017 09:57:53 +0200 Subject: [PATCH] spacing around comas --- ethcore/light/src/client/fetch.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ethcore/light/src/client/fetch.rs b/ethcore/light/src/client/fetch.rs index 9f4a38dc4..0aae7d31c 100644 --- a/ethcore/light/src/client/fetch.rs +++ b/ethcore/light/src/client/fetch.rs @@ -31,11 +31,11 @@ pub trait ChainDataFetcher: Send + Sync + 'static { type Error: ::std::fmt::Debug; /// Future for fetching block body. - type Body: IntoFuture; + type Body: IntoFuture; /// Future for fetching block receipts. - type Receipts: IntoFuture,Error=Self::Error>; + type Receipts: IntoFuture, Error=Self::Error>; /// Future for fetching epoch transition - type Transition: IntoFuture,Error=Self::Error>; + type Transition: IntoFuture, Error=Self::Error>; /// Fetch a block body. fn block_body(&self, header: &Header) -> Self::Body;