aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-cli.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-04-04 18:02:27 +0300
committerLarry Ruane <larryruane@gmail.com>2020-07-12 13:31:16 -0600
commitb5a80fa7e487c37b7ac0e3874a2fabade41b9ca8 (patch)
tree8f971e7b80f55604486b99bd203a648adeb2ea27 /src/bitcoin-cli.cpp
parent4db44acf2d5d3b40943c94b3960f42838255b7ad (diff)
downloadbitcoin-b5a80fa7e487c37b7ac0e3874a2fabade41b9ca8.tar.xz
util: Handle HTTP_SERVICE_UNAVAILABLE in bitcoin-cli
Diffstat (limited to 'src/bitcoin-cli.cpp')
-rw-r--r--src/bitcoin-cli.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp
index 9afcda4578..89f78d3678 100644
--- a/src/bitcoin-cli.cpp
+++ b/src/bitcoin-cli.cpp
@@ -429,6 +429,8 @@ static UniValue CallRPC(BaseRequestHandler* rh, const std::string& strMethod, co
} else {
throw std::runtime_error("Authorization failed: Incorrect rpcuser or rpcpassword");
}
+ } else if (response.status == HTTP_SERVICE_UNAVAILABLE) {
+ throw std::runtime_error(strprintf("Server response: %s", response.body));
} else if (response.status >= 400 && response.status != HTTP_BAD_REQUEST && response.status != HTTP_NOT_FOUND && response.status != HTTP_INTERNAL_SERVER_ERROR)
throw std::runtime_error(strprintf("server returned HTTP error %d", response.status));
else if (response.body.empty())