mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-08 19:59:30 +00:00
Added missing check to update_chain_tip
This commit is contained in:
parent
e0913f9068
commit
647319b731
1 changed files with 5 additions and 0 deletions
|
@ -1653,6 +1653,11 @@ void SideChain::update_chain_tip(const PoolBlock* block)
|
|||
|
||||
const PoolBlock* tip = m_chainTip;
|
||||
|
||||
if (block == tip) {
|
||||
LOGINFO(5, "Trying to update chain tip to the same block again. Ignoring it.");
|
||||
return;
|
||||
}
|
||||
|
||||
bool is_alternative;
|
||||
if (is_longer_chain(tip, block, is_alternative)) {
|
||||
difficulty_type diff;
|
||||
|
|
Loading…
Reference in a new issue