From a78b030f584c19ca129074600b6d984e5c2ae491 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Sun, 1 Sep 2019 22:22:09 +1000 Subject: [PATCH] Fix rpc port-bump bug --- beacon_node/src/config.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/beacon_node/src/config.rs b/beacon_node/src/config.rs index a3829a33c..c3dfad9ba 100644 --- a/beacon_node/src/config.rs +++ b/beacon_node/src/config.rs @@ -472,7 +472,6 @@ impl<'a> ConfigBuilder<'a> { self.client_config.network.libp2p_port += bump; self.client_config.network.discovery_port += bump; self.client_config.rpc.port += bump; - self.client_config.rpc.port += bump; self.client_config.rest_api.port += bump; }