SideChain: fixed data race

pull/271/head
SChernykh 2023-04-24 20:23:45 +02:00
parent 98a9eb4f18
commit 98b2d2057c
1 changed files with 2 additions and 0 deletions

View File

@ -1123,6 +1123,8 @@ uint64_t SideChain::bottom_height(const PoolBlock* tip) const
uint64_t bottom_height;
std::vector<MinerShare> shares;
ReadLock lock(m_sidechainLock);
if (!get_shares(tip, shares, &bottom_height, true)) {
return 0;
}