Browse Source

merge fix

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
63fb8d89bd
  1. 2
      libethereum/Client.cpp

2
libethereum/Client.cpp

@ -629,7 +629,7 @@ void Client::syncBlockQueue()
m_syncAmount = max(c_syncMin, m_syncAmount * 9 / 10);
else if (elapsed < c_targetDuration * 0.9 && m_syncAmount < c_syncMax)
m_syncAmount = min(c_syncMax, m_syncAmount * 11 / 10 + 1);
if (ir.first.empty())
if (ir.liveBlocks.empty())
return;
onChainChanged(ir);
}

Loading…
Cancel
Save