Merge #12153: Avoid permanent cs_main lock in getblockheader
f12e1d0b51
rpc: Avoid permanent cs_main lock in getblockheader (João Barbosa)
Pull request description:
This PR reduces the `cs_main` lock scope in `getblockheader` RPC.
Tree-SHA512: bc51f80e15d1b32d3c7886836457f9929706b6aad9841dafce31ffca444281471b21b56192bb50de774184b9377412f815ad8d3d2439049a7e64d2e59c415767
This commit is contained in:
commit
29a9f07743
1 changed files with 9 additions and 4 deletions
|
@ -747,15 +747,20 @@ static UniValue getblockheader(const JSONRPCRequest& request)
|
||||||
+ HelpExampleRpc("getblockheader", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\"")
|
+ HelpExampleRpc("getblockheader", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\"")
|
||||||
);
|
);
|
||||||
|
|
||||||
LOCK(cs_main);
|
|
||||||
|
|
||||||
uint256 hash(ParseHashV(request.params[0], "hash"));
|
uint256 hash(ParseHashV(request.params[0], "hash"));
|
||||||
|
|
||||||
bool fVerbose = true;
|
bool fVerbose = true;
|
||||||
if (!request.params[1].isNull())
|
if (!request.params[1].isNull())
|
||||||
fVerbose = request.params[1].get_bool();
|
fVerbose = request.params[1].get_bool();
|
||||||
|
|
||||||
const CBlockIndex* pblockindex = LookupBlockIndex(hash);
|
const CBlockIndex* pblockindex;
|
||||||
|
const CBlockIndex* tip;
|
||||||
|
{
|
||||||
|
LOCK(cs_main);
|
||||||
|
pblockindex = LookupBlockIndex(hash);
|
||||||
|
tip = chainActive.Tip();
|
||||||
|
}
|
||||||
|
|
||||||
if (!pblockindex) {
|
if (!pblockindex) {
|
||||||
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");
|
||||||
}
|
}
|
||||||
|
@ -768,7 +773,7 @@ static UniValue getblockheader(const JSONRPCRequest& request)
|
||||||
return strHex;
|
return strHex;
|
||||||
}
|
}
|
||||||
|
|
||||||
return blockheaderToJSON(chainActive.Tip(), pblockindex);
|
return blockheaderToJSON(tip, pblockindex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static CBlock GetBlockChecked(const CBlockIndex* pblockindex)
|
static CBlock GetBlockChecked(const CBlockIndex* pblockindex)
|
||||||
|
|
Loading…
Reference in a new issue