From 4e13218a0e3def14a3988093360b2e24a7635068 Mon Sep 17 00:00:00 2001 From: jl777 Date: Thu, 12 Apr 2018 21:13:16 +0300 Subject: [PATCH] Test --- src/univalue/lib/univalue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/univalue/lib/univalue.cpp b/src/univalue/lib/univalue.cpp index 105614568..0e8005f23 100644 --- a/src/univalue/lib/univalue.cpp +++ b/src/univalue/lib/univalue.cpp @@ -19,7 +19,7 @@ namespace { static bool ParsePrechecks(const std::string& str) { - fprintf(stderr,"Parse.(%s)\n",str.c_str()); + //fprintf(stderr,"Parse.(%s)\n",str.c_str()); if (str.empty()) // No empty string allowed return false; if (str.size() >= 1 && (json_isspace(str[0]) || json_isspace(str[str.size()-1]))) // No padding allowed