aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_protocol/block_queue.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-08-21cryptonote_protocol: misc fixes to the new sync algorithmmoneromooo-monero1-1/+2
Fix sync wedge corner case: It could happen if a connection went into standby mode, while it was the one which had requested the next span, and that span was still waiting for the data, and that peer is not on the main chain. Other peers can then start asking for that data again and again, but never get it as only that forked peer does. And various other fixes
2017-08-16cryptonote_protocol: kick idle synchronizing peersmoneromooo-monero1-0/+1
In case they dropped off downloading for any reason, they'll get sent to download again.
2017-08-12protocol: fix reorgs while syncingmoneromooo-monero1-3/+3
2017-08-07cryptonote_protocol: retry stale spans earlymoneromooo-monero1-0/+1
Connections can be dropped by the net_node layer, unbeknownst to cryptonote_protocol, which would then not flush any spans scheduled to that connection, which would cause it to be only downloaded again once it becomes the next span (possibly after a small delay if it had been requested less than 5 seconds ago).
2017-08-07cryptonote_protocol_handler: sync speedupmoneromooo-monero1-0/+96
A block queue is now placed between block download and block processing. Blocks are now requested only from one peer (unless starved). Includes a new sync_info coommand.