From 6795de7f1adabf0e52607ba5678067b6205af8c5 Mon Sep 17 00:00:00 2001 From: CHAE-PIL LIM Date: Sat, 8 Oct 2016 01:16:27 +0900 Subject: [PATCH] [cosmetic] set width 9 to 15 (#1062) tested with PRE_ENABLED, should be ok with OUTPOINT_SPENT too --- src/rpcmasternode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcmasternode.cpp b/src/rpcmasternode.cpp index ba3996246..13a6a8ca2 100644 --- a/src/rpcmasternode.cpp +++ b/src/rpcmasternode.cpp @@ -508,7 +508,7 @@ UniValue masternodelist(const UniValue& params, bool fHelp) obj.push_back(Pair(strOutpoint, strAddress)); } else if (strMode == "full") { std::ostringstream streamFull; - streamFull << std::setw(9) << + streamFull << std::setw(15) << mn.GetStatus() << " " << mn.nProtocolVersion << " " << CBitcoinAddress(mn.pubKeyCollateralAddress.GetID()).ToString() << " " <<