From e00bbdaf72cbcaa5a3b2b25bd48c1ba03263d13d Mon Sep 17 00:00:00 2001 From: Valera Cogut Date: Tue, 16 Oct 2018 18:52:44 +0300 Subject: [PATCH] removed not required output to console --- src/rpc/cli.cpp | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/rpc/cli.cpp b/src/rpc/cli.cpp index d715514..46d94c6 100644 --- a/src/rpc/cli.cpp +++ b/src/rpc/cli.cpp @@ -100,16 +100,8 @@ void cli::run() { break; } - - // We have to hide sensitive information on the fly -#ifdef HAVE_EDITLINE - if (rl_check_secret(rl_line_buffer)) - std::cout << " *** secret *** " << "\n"; - else -#endif - { - std::cout << line << "\n"; - } + + std::cout << "\n"; line += char(EOF); fc::variants args = fc::json::variants_from_string(line);