From a9284bec188911766ac9fcf4a1db3ef9223fec15 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Sun, 9 Jun 2019 06:41:51 -0400 Subject: [PATCH] Fix type in default confi filename --- beacon_node/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/src/main.rs b/beacon_node/src/main.rs index dbbfbbea4c..d6274befc8 100644 --- a/beacon_node/src/main.rs +++ b/beacon_node/src/main.rs @@ -10,7 +10,7 @@ use std::path::PathBuf; pub const DEFAULT_DATA_DIR: &str = ".lighthouse"; -pub const CLIENT_CONFIG_FILENAME: &str = "becaon-node.toml"; +pub const CLIENT_CONFIG_FILENAME: &str = "beacon-node.toml"; pub const ETH2_CONFIG_FILENAME: &str = "eth2-spec.toml"; fn main() {