<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/cryptonote_protocol/block_queue.cpp, branch crash-pl</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=crash-pl</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=crash-pl'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2018-01-26T15:03:20Z</updated>
<entry>
<title>Readd copyright starting date</title>
<updated>2018-01-26T15:03:20Z</updated>
<author>
<name>xmr-eric</name>
<email>eric@moneroeric.com</email>
</author>
<published>2018-01-07T23:55:52Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=84a7f6a4827f5baec6bb5cecbe11d4f61708b520'/>
<id>urn:sha1:84a7f6a4827f5baec6bb5cecbe11d4f61708b520</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update 2018 copyright</title>
<updated>2018-01-26T15:03:20Z</updated>
<author>
<name>xmr-eric</name>
<email>eric@moneroeric.com</email>
</author>
<published>2018-01-07T05:05:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=18216f19dd479466cb7fd38f52d23bddfcfd4880'/>
<id>urn:sha1:18216f19dd479466cb7fd38f52d23bddfcfd4880</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use const refs in for loops for non tiny types</title>
<updated>2017-12-18T15:15:54Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-12-13T11:21:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b51dc5668714a88d79ddb410d0dcab1559a4bc98'/>
<id>urn:sha1:b51dc5668714a88d79ddb410d0dcab1559a4bc98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add empty container sanity checks when using front() and back()</title>
<updated>2017-12-18T15:15:40Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-12-11T22:36:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=45a1c4c0885584554668c89bd6976474af01e2f5'/>
<id>urn:sha1:45a1c4c0885584554668c89bd6976474af01e2f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move includes around to lessen overall load</title>
<updated>2017-12-16T22:46:38Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-11-25T22:25:05Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=09ce03d612e54231694eee2fb9e5c807b2bfc341'/>
<id>urn:sha1:09ce03d612e54231694eee2fb9e5c807b2bfc341</id>
<content type='text'>
</content>
</entry>
<entry>
<title>block_queue: use boost::uuids::nil_uuid where appropriate</title>
<updated>2017-10-03T10:55:45Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-10-03T10:55:45Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=8028dde7a62bda08be736bd7034420c9a4da93fc'/>
<id>urn:sha1:8028dde7a62bda08be736bd7034420c9a4da93fc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move checkpoints in a separate library</title>
<updated>2017-09-25T20:16:26Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-09-10T16:35:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5d65a75b69e0e83e69384461f26111666d6bf9ae'/>
<id>urn:sha1:5d65a75b69e0e83e69384461f26111666d6bf9ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cryptonote_protocol: misc fixes to the new sync algorithm</title>
<updated>2017-08-21T20:57:19Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-08-18T19:14:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=70b8c6d77a6aaf90a6e84f3ec6f25bea3b163c40'/>
<id>urn:sha1:70b8c6d77a6aaf90a6e84f3ec6f25bea3b163c40</id>
<content type='text'>
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
</content>
</entry>
<entry>
<title>cryptonote_protocol: kick idle synchronizing peers</title>
<updated>2017-08-16T21:24:50Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-08-16T18:27:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7b747607566aa62460a4b4a278f2f8eb86f18bc2'/>
<id>urn:sha1:7b747607566aa62460a4b4a278f2f8eb86f18bc2</id>
<content type='text'>
In case they dropped off downloading for any reason, they'll get
sent to download again.
</content>
</entry>
<entry>
<title>block_queue: do not add empty spans</title>
<updated>2017-08-15T10:38:59Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-08-15T10:38:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6edb1b3e468e4ea5eca131114ee3ff26af3bcba0'/>
<id>urn:sha1:6edb1b3e468e4ea5eca131114ee3ff26af3bcba0</id>
<content type='text'>
</content>
</entry>
</feed>
