Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
Apply rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Zabaluev committed Jun 14, 2019
1 parent 0c7571a commit cad5588
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion network-core/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ pub struct ClientReady<C> {

impl<C> ClientReady<C> {
fn new(client: C) -> Self {
ClientReady { client: Some(client) }
ClientReady {
client: Some(client),
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion network-grpc/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ use crate::{
};

use chain_core::property;
use network_core::client::Client;
use network_core::client::block::BlockService;
use network_core::client::gossip::GossipService;
use network_core::client::p2p::P2pService;
use network_core::client::Client;
use network_core::error as core_error;
use network_core::gossip::{self, Gossip, NodeId};
use network_core::subscription::BlockEvent;
Expand Down

0 comments on commit cad5588

Please sign in to comment.