<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/cryptonote_core/cryptonote_basic.h, branch v0.9.0</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.9.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.9.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2015-12-31T06:39:56Z</updated>
<entry>
<title>updated copyright year</title>
<updated>2015-12-31T06:39:56Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2015-12-31T06:39:56Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=de0392685063d93dbdad3a6b1a2712eaf94dd51a'/>
<id>urn:sha1:de0392685063d93dbdad3a6b1a2712eaf94dd51a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "Merge pull request #506"</title>
<updated>2015-11-30T09:07:22Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2015-11-30T09:07:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=2ea8d7345fa6bebf99c0630fbaab4eae6d5805b2'/>
<id>urn:sha1:2ea8d7345fa6bebf99c0630fbaab4eae6d5805b2</id>
<content type='text'>
This reverts commit c6bf73131aaf804cb17f24c856f826be2761a566, reversing
changes made to 8a52cf4055d247dd4b162985c931e99683992e3c.
</content>
</entry>
<entry>
<title>core: serialize block major/minor versions as bytes, not varints</title>
<updated>2015-11-27T20:54:01Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-11-27T20:54:01Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e45a8c9768d942868fbe7f62ea5f521947e9f671'/>
<id>urn:sha1:e45a8c9768d942868fbe7f62ea5f521947e9f671</id>
<content type='text'>
This allows them to be saved as a fixed (one byte) chunk whatever
the value. Using a varint will use two bytes as the high bit gets
set.

This is backward compatible with current usage (0-2 values).
</content>
</entry>
<entry>
<title>hardfork: switch voting to block minor version</title>
<updated>2015-10-21T18:21:14Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-10-21T18:18:00Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=63766275301f1c562205e22d5f14b220f321ad58'/>
<id>urn:sha1:63766275301f1c562205e22d5f14b220f321ad58</id>
<content type='text'>
Using major version would cause older daemons to reject those
blocks as they fail to deserialize blocks with a major version
which is not 1. There is no such restriction on the minor
version, so switching allows older daemons to coexist with
newer ones till the actual fork date, when most will hopefully
have updated already.

Also, for the same reason, we consider a vote for 0 to be a
vote for 1, since older daemons set minor version to 0.
</content>
</entry>
<entry>
<title>blockchain: use the new hardfork class</title>
<updated>2015-09-12T10:15:53Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-09-12T10:14:00Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f85498422d9aec79411c739835ab4a5ed27b1688'/>
<id>urn:sha1:f85498422d9aec79411c739835ab4a5ed27b1688</id>
<content type='text'>
</content>
</entry>
<entry>
<title>encrypted payment ids are now 64 bit, instead of 256 bit</title>
<updated>2015-08-09T09:13:51Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-08-09T09:09:39Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=a2d7a5fb49dedd6c7e024701eefc4c0beade1edd'/>
<id>urn:sha1:a2d7a5fb49dedd6c7e024701eefc4c0beade1edd</id>
<content type='text'>
Pros:
 - smaller on the blockchain
 - shorter integrated addresses

Cons:
 - less sparseness
 - less ability to embed actual information

The boolean argument to encrypt payment ids is now gone from the
RPC calls, since the decision is made based on the length of the
payment id passed.
</content>
</entry>
<entry>
<title>Add compile-time support for both db implementations: in-memory and LMDB</title>
<updated>2015-02-02T19:53:09Z</updated>
<author>
<name>warptangent</name>
<email>warptangent@inbox.com</email>
</author>
<published>2015-01-26T05:36:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=84fe5fbd65100a731608471ef0a4c462ea8f5626'/>
<id>urn:sha1:84fe5fbd65100a731608471ef0a4c462ea8f5626</id>
<content type='text'>
Usage:

default is lmdb for blockchain branch:
$ make release

same as:
$ DATABASE=lmdb make release

for original in-memory implementation:
$ DATABASE=memory make release
</content>
</entry>
<entry>
<title>year updated in license</title>
<updated>2015-01-02T16:52:46Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2015-01-02T16:52:46Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f4b69d553a249ace3694e3b4fd307ddffa156d7d'/>
<id>urn:sha1:f4b69d553a249ace3694e3b4fd307ddffa156d7d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "low risk, potentially varint overflow bug patched thanks to BBR"</title>
<updated>2014-09-25T06:24:42Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2014-09-25T06:24:42Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=59a8366bb18653f14142321a9d85377ceaef8fad'/>
<id>urn:sha1:59a8366bb18653f14142321a9d85377ceaef8fad</id>
<content type='text'>
This reverts commit 4e2b2b942daa4206ec44c66e59863670dfe3fde4.
</content>
</entry>
<entry>
<title>low risk, potentially varint overflow bug patched thanks to BBR</title>
<updated>2014-09-25T02:17:33Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2014-09-24T20:28:25Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4e2b2b942daa4206ec44c66e59863670dfe3fde4'/>
<id>urn:sha1:4e2b2b942daa4206ec44c66e59863670dfe3fde4</id>
<content type='text'>
</content>
</entry>
</feed>
