Merge pull request #2091

e4da88a2 Fixed typo in rpc/core_rpc_server.cpp (Julien Klepatch)
This commit is contained in:
Riccardo Spagni 2017-06-24 12:43:28 +02:00
commit 50d8f73f06
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -1130,8 +1130,8 @@ namespace cryptonote
return false;
}
res.headers.push_back(block_header_response());
bool responce_filled = fill_block_header_response(blk, false, block_height, block_hash, res.headers.back());
if (!responce_filled)
bool response_filled = fill_block_header_response(blk, false, block_height, block_hash, res.headers.back());
if (!response_filled)
{
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;
error_resp.message = "Internal error: can't produce valid response.";