From 705edf0e455b2d43c1151a4046a6ac7607893f8e Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Mon, 27 May 2019 09:01:50 +1000 Subject: [PATCH] Remove commented-out code --- beacon_node/http_server/src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/beacon_node/http_server/src/lib.rs b/beacon_node/http_server/src/lib.rs index fe7b9b1b32..6bc69e72d1 100644 --- a/beacon_node/http_server/src/lib.rs +++ b/beacon_node/http_server/src/lib.rs @@ -15,10 +15,6 @@ use tokio::runtime::TaskExecutor; pub struct HttpServerConfig { pub enabled: bool, pub listen_address: String, - /* - pub listen_address: Ipv4Addr, - pub port: u16, - */ } impl Default for HttpServerConfig { @@ -26,10 +22,6 @@ impl Default for HttpServerConfig { Self { enabled: false, listen_address: "127.0.0.1:5051".to_string(), - /* - listen_address: Ipv4Addr::new(127, 0, 0, 1), - port: 5051, - */ } } }