mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-15 00:32:37 +02:00
[refactor] various style fix-ups
This commit is contained in:
15
src/rest.cpp
15
src/rest.cpp
@ -341,11 +341,10 @@ static bool rest_block_notxdetails(const std::any& context, HTTPRequest* req, co
|
|||||||
return rest_block(context, req, strURIPart, TxVerbosity::SHOW_TXID);
|
return rest_block(context, req, strURIPart, TxVerbosity::SHOW_TXID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static bool rest_filter_header(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
|
static bool rest_filter_header(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
|
||||||
{
|
{
|
||||||
if (!CheckWarmup(req))
|
if (!CheckWarmup(req)) return false;
|
||||||
return false;
|
|
||||||
std::string param;
|
std::string param;
|
||||||
const RetFormat rf = ParseDataFormat(param, strURIPart);
|
const RetFormat rf = ParseDataFormat(param, strURIPart);
|
||||||
|
|
||||||
@ -375,7 +374,7 @@ static bool rest_filter_header(const std::any& context, HTTPRequest* req, const
|
|||||||
return RESTERR(req, HTTP_BAD_REQUEST, strprintf("Header count out of acceptable range (1-%u): %s", MAX_REST_HEADERS_RESULTS, uri_parts[1]));
|
return RESTERR(req, HTTP_BAD_REQUEST, strprintf("Header count out of acceptable range (1-%u): %s", MAX_REST_HEADERS_RESULTS, uri_parts[1]));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<const CBlockIndex *> headers;
|
std::vector<const CBlockIndex*> headers;
|
||||||
headers.reserve(*parsed_count);
|
headers.reserve(*parsed_count);
|
||||||
{
|
{
|
||||||
ChainstateManager* maybe_chainman = GetChainman(context, req);
|
ChainstateManager* maybe_chainman = GetChainman(context, req);
|
||||||
@ -396,7 +395,7 @@ static bool rest_filter_header(const std::any& context, HTTPRequest* req, const
|
|||||||
|
|
||||||
std::vector<uint256> filter_headers;
|
std::vector<uint256> filter_headers;
|
||||||
filter_headers.reserve(*parsed_count);
|
filter_headers.reserve(*parsed_count);
|
||||||
for (const CBlockIndex *pindex : headers) {
|
for (const CBlockIndex* pindex : headers) {
|
||||||
uint256 filter_header;
|
uint256 filter_header;
|
||||||
if (!index->LookupFilterHeader(pindex, filter_header)) {
|
if (!index->LookupFilterHeader(pindex, filter_header)) {
|
||||||
std::string errmsg = "Filter not found.";
|
std::string errmsg = "Filter not found.";
|
||||||
@ -454,12 +453,12 @@ static bool rest_filter_header(const std::any& context, HTTPRequest* req, const
|
|||||||
|
|
||||||
static bool rest_block_filter(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
|
static bool rest_block_filter(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
|
||||||
{
|
{
|
||||||
if (!CheckWarmup(req))
|
if (!CheckWarmup(req)) return false;
|
||||||
return false;
|
|
||||||
std::string param;
|
std::string param;
|
||||||
const RetFormat rf = ParseDataFormat(param, strURIPart);
|
const RetFormat rf = ParseDataFormat(param, strURIPart);
|
||||||
|
|
||||||
//request is sent over URI scheme /rest/blockfilter/filtertype/blockhash
|
// request is sent over URI scheme /rest/blockfilter/filtertype/blockhash
|
||||||
std::vector<std::string> uri_parts;
|
std::vector<std::string> uri_parts;
|
||||||
boost::split(uri_parts, param, boost::is_any_of("/"));
|
boost::split(uri_parts, param, boost::is_any_of("/"));
|
||||||
if (uri_parts.size() != 2) {
|
if (uri_parts.size() != 2) {
|
||||||
|
Reference in New Issue
Block a user