diff options
| author | MarcoFalke <[email protected]> | 2016-12-02 15:54:53 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-12-02 15:55:23 +0100 |
| commit | 31bcc667863f368157efa1143a78623a5db8f0d1 (patch) | |
| tree | 604b80f9507866f60a576a7a14362df42f8aeb6e /src/bitcoin-cli.cpp | |
| parent | Merge #9239: Disable fee estimates for 1 block target (diff) | |
| parent | bitcoin-cli: Make error message less confusing (diff) | |
| download | discoin-31bcc667863f368157efa1143a78623a5db8f0d1.tar.xz discoin-31bcc667863f368157efa1143a78623a5db8f0d1.zip | |
Merge #9265: bitcoin-cli: Make error message less confusing
fe37fbe bitcoin-cli: Make error message less confusing (Wladimir J. van der Laan)
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index b27264081..596cc8ead 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -247,7 +247,7 @@ UniValue CallRPC(const std::string& strMethod, const UniValue& params) event_base_free(base); if (response.status == 0) - throw CConnectionFailed(strprintf("couldn't connect to server\n(make sure server is running and you are connecting to the correct RPC port: %d %s)", response.error, http_errorstring(response.error))); + throw CConnectionFailed(strprintf("couldn't connect to server: %s (code %d)\n(make sure server is running and you are connecting to the correct RPC port)", http_errorstring(response.error), response.error)); else if (response.status == HTTP_UNAUTHORIZED) throw std::runtime_error("incorrect rpcuser or rpcpassword (authorization failed)"); else if (response.status >= 400 && response.status != HTTP_BAD_REQUEST && response.status != HTTP_NOT_FOUND && response.status != HTTP_INTERNAL_SERVER_ERROR) |