From 64b8027c5c8ad263c0f4cf2944fd3c59b08c3cd6 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Wed, 27 May 2015 09:41:14 +0200 Subject: rest.cpp: strip whitespace --- src/rest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rest.cpp b/src/rest.cpp index 1b7954bbf6..1426f21135 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -262,12 +262,12 @@ static bool rest_chaininfo(AcceptedConnection* conn, { vector params; const RetFormat rf = ParseDataFormat(params, strURIPart); - + switch (rf) { case RF_JSON: { Array rpcParams; Value chainInfoObject = getblockchaininfo(rpcParams, false); - + string strJSON = write_string(chainInfoObject, false) + "\n"; conn->stream() << HTTPReply(HTTP_OK, strJSON, fRun) << std::flush; return true; @@ -276,7 +276,7 @@ static bool rest_chaininfo(AcceptedConnection* conn, throw RESTERR(HTTP_NOT_FOUND, "output format not found (available: json)"); } } - + // not reached return true; // continue to process further HTTP reqs on this cxn } @@ -351,9 +351,9 @@ static bool rest_getutxos(AcceptedConnection* conn, // parse/deserialize input // input-format = output-format, rest/getutxos/bin requires binary input, gives binary output, ... - + string strRequestMutable = strRequest; //convert const string to string for allowing hex to bin converting - + switch (rf) { case RF_HEX: { // convert hex to bin, continue then with bin part -- cgit v1.2.3