From 3f0893479908ca28d6127c8d0ada30737cb830be Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Wed, 2 Sep 2020 17:24:03 -0400 Subject: rest: Pass in NodeContext to rest_block --- src/rest.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/rest.cpp') diff --git a/src/rest.cpp b/src/rest.cpp index aa97470ca7..1093bf46ce 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -231,7 +231,8 @@ static bool rest_headers(const std::any& context, } } -static bool rest_block(HTTPRequest* req, +static bool rest_block(const std::any& context, + HTTPRequest* req, const std::string& strURIPart, bool showTxDetails) { @@ -297,12 +298,12 @@ static bool rest_block(HTTPRequest* req, static bool rest_block_extended(const std::any& context, HTTPRequest* req, const std::string& strURIPart) { - return rest_block(req, strURIPart, true); + return rest_block(context, req, strURIPart, true); } static bool rest_block_notxdetails(const std::any& context, HTTPRequest* req, const std::string& strURIPart) { - return rest_block(req, strURIPart, false); + return rest_block(context, req, strURIPart, false); } // A bit of a hack - dependency on a function defined in rpc/blockchain.cpp -- cgit v1.2.3