mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 23:18:14 +01:00
refactor: Remove unused bool parameter in RPCNotifyBlockChange()
This commit is contained in:
@@ -205,7 +205,7 @@ static UniValue getbestblockhash(const JSONRPCRequest& request)
|
||||
return ::ChainActive().Tip()->GetBlockHash().GetHex();
|
||||
}
|
||||
|
||||
void RPCNotifyBlockChange(bool ibd, const CBlockIndex * pindex)
|
||||
void RPCNotifyBlockChange(const CBlockIndex* pindex)
|
||||
{
|
||||
if(pindex) {
|
||||
std::lock_guard<std::mutex> lock(cs_blockchange);
|
||||
|
||||
Reference in New Issue
Block a user