From 26ef3fff1551bf0c322d88608c086c9fb5083b55 Mon Sep 17 00:00:00 2001 From: BtcDrak Date: Wed, 26 Oct 2016 19:02:20 +0100 Subject: [PATCH] Remove trailing whitespace from JSON export --- lib/univalue_write.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/univalue_write.cpp b/lib/univalue_write.cpp index cfbdad3284ed53..cf27835991162b 100644 --- a/lib/univalue_write.cpp +++ b/lib/univalue_write.cpp @@ -79,8 +79,6 @@ void UniValue::writeArray(unsigned int prettyIndent, unsigned int indentLevel, s s += values[i].write(prettyIndent, indentLevel + 1); if (i != (values.size() - 1)) { s += ","; - if (prettyIndent) - s += " "; } if (prettyIndent) s += "\n";