mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 09:24:47 +00:00
Merge pull request #5815
adc16d2
Fix check for disconnecting peers when syncing (jagerman)
This commit is contained in:
commit
7bdff6005f
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ namespace cryptonote
|
|||
|
||||
if(m_core.have_block(hshd.top_id))
|
||||
{
|
||||
if (target > hshd.current_height)
|
||||
if (target > m_core.get_current_blockchain_height())
|
||||
{
|
||||
MINFO(context << "peer is not ahead of us and we're syncing, disconnecting");
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue