From 65ce0215a461318c5d7caf3f35cfeef947171a5a Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Tue, 7 Jul 2015 12:15:44 +0200 Subject: [bitcoin-cli] improve error output --- src/bitcoin-cli.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index d451720141..903777ba51 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -190,6 +190,15 @@ int CommandLineRPC(int argc, char *argv[]) throw CConnectionFailed("server in warmup"); strPrint = "error: " + error.write(); nRet = abs(code); + if (error.isObject()) + { + UniValue errCode = find_value(error, "code"); + UniValue errMsg = find_value(error, "message"); + strPrint = errCode.isNull() ? "" : "error code: "+errCode.getValStr()+"\n"; + + if (errMsg.isStr()) + strPrint += "error message:\n"+errMsg.get_str(); + } } else { // Result if (result.isNull()) -- cgit v1.2.3