mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-12-23 03:49:23 +00:00
Tweaked block broadcast rules
This commit is contained in:
parent
fc88b9c9b2
commit
b8f04ac787
1 changed files with 0 additions and 1 deletions
|
@ -1409,7 +1409,6 @@ bool P2PServer::P2PClient::on_block_broadcast(const uint8_t* buf, uint32_t size)
|
||||||
else if (peer_height > our_height) {
|
else if (peer_height > our_height) {
|
||||||
if (peer_height >= our_height + 2) {
|
if (peer_height >= our_height + 2) {
|
||||||
LOGWARN(4, "peer " << static_cast<char*>(m_addrString) << " is ahead on mainchain (height " << peer_height << ", your height " << our_height << "). Is your monerod stuck or lagging?");
|
LOGWARN(4, "peer " << static_cast<char*>(m_addrString) << " is ahead on mainchain (height " << peer_height << ", your height " << our_height << "). Is your monerod stuck or lagging?");
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue