From d92cee59a026efa3c9d2e3c1b3707cc14faacec3 Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Mon, 13 Jan 2020 17:36:30 +0000 Subject: [PATCH] validator: removing scary comment in main() --- validator/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/validator/src/main.rs b/validator/src/main.rs index 2981f65540..ea7b2679a2 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -10,7 +10,6 @@ mod validator; fn main() { // load environment variables from .env file - // DO NOT USE IN PRODUCTION - REPLACE WITH PROPERLY SET VARIABLES if dotenv::dotenv().is_err() { eprint!("failed to read .env file - the logging is unlikely to work correctly") }