mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-04 01:32:31 +01:00
rpc: minize getTipHash() calls in gbt
Set tip at the start of the function and only update it for a long poll. Additionally have getTipHash return an optional, so the caller can explicitly check that a tip exists.
This commit is contained in:
@@ -847,11 +847,11 @@ public:
|
||||
return chainman().GetParams().IsTestChain();
|
||||
}
|
||||
|
||||
uint256 getTipHash() override
|
||||
std::optional<uint256> getTipHash() override
|
||||
{
|
||||
LOCK(::cs_main);
|
||||
CBlockIndex* tip{chainman().ActiveChain().Tip()};
|
||||
if (!tip) return uint256{0};
|
||||
if (!tip) return {};
|
||||
return tip->GetBlockHash();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user