mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Merge 3530d5d2d8 into merged_master (Bitcoin PR #18335)
This commit is contained in:
commit
a4e0826481
3 changed files with 29 additions and 1 deletions
|
|
@ -708,6 +708,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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue