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;