From 75a3b8ae239cd9c1f34e1621e43f142fbb36eeb5 Mon Sep 17 00:00:00 2001 From: Andronik Ordian Date: Wed, 8 Aug 2018 22:00:48 +0200 Subject: [PATCH] style(api.rs): add trailing commas --- ethcore/sync/src/api.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/sync/src/api.rs b/ethcore/sync/src/api.rs index 448e2fbf0b1..606aa39b31f 100644 --- a/ethcore/sync/src/api.rs +++ b/ethcore/sync/src/api.rs @@ -265,7 +265,7 @@ fn light_params( network_id: u64, max_peers: u32, pruning_info: PruningInfo, - sample_store: Option> + sample_store: Option>, ) -> LightParams { const MAX_LIGHTSERV_LOAD: f64 = 0.5; @@ -304,7 +304,7 @@ impl EthSync { params.config.network_id, params.network_config.max_peers, pruning_info, - sample_store + sample_store, ); let mut light_proto = LightProtocol::new(params.provider, light_params);