mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #7109
e83a220
protocol: fix switchting to adding blocks if noone's adding the next span (moneromooo-monero)
This commit is contained in:
commit
f570ce1349
1 changed files with 1 additions and 2 deletions
|
@ -2309,8 +2309,7 @@ skip:
|
||||||
uint64_t start_height;
|
uint64_t start_height;
|
||||||
std::vector<cryptonote::block_complete_entry> blocks;
|
std::vector<cryptonote::block_complete_entry> blocks;
|
||||||
boost::uuids::uuid span_connection_id;
|
boost::uuids::uuid span_connection_id;
|
||||||
bool filled = false;
|
if (m_block_queue.get_next_span(start_height, blocks, span_connection_id, true))
|
||||||
if (m_block_queue.get_next_span(start_height, blocks, span_connection_id, filled) && filled)
|
|
||||||
{
|
{
|
||||||
LOG_DEBUG_CC(context, "No other thread is adding blocks, resuming");
|
LOG_DEBUG_CC(context, "No other thread is adding blocks, resuming");
|
||||||
MLOG_PEER_STATE("will try to add blocks next");
|
MLOG_PEER_STATE("will try to add blocks next");
|
||||||
|
|
Loading…
Reference in a new issue