Merge pull request #6481

119f706 rpc: fix 'use_bootstrap_daemon_if_necessary' return value (xiphon)
This commit is contained in:
luigi1111 2020-05-06 00:29:49 -05:00
commit de025281dc
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 1 additions and 1 deletions

View File

@ -1990,7 +1990,7 @@ namespace cryptonote
r = false;
}
res.untrusted = true;
return true;
return r;
}
//------------------------------------------------------------------------------------------------------------------------------
bool core_rpc_server::on_get_last_block_header(const COMMAND_RPC_GET_LAST_BLOCK_HEADER::request& req, COMMAND_RPC_GET_LAST_BLOCK_HEADER::response& res, epee::json_rpc::error& error_resp, const connection_context *ctx)