<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/serialization/json_object.cpp, branch v0.14.1.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.14.1.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.14.1.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-03-17T15:56:04Z</updated>
<entry>
<title>Merge pull request #5190</title>
<updated>2019-03-17T15:56:04Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2019-03-17T15:56:04Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=848591c4d85ae73c42b3317d9dab192267bc2737'/>
<id>urn:sha1:848591c4d85ae73c42b3317d9dab192267bc2737</id>
<content type='text'>
551104fb daemon: add --public-node mode, RPC port propagation over P2P (xiphon)
</content>
</entry>
<entry>
<title>Update 2019 copyright</title>
<updated>2019-03-05T21:05:34Z</updated>
<author>
<name>binaryFate</name>
<email>binaryfate@users.noreply.github.com</email>
</author>
<published>2019-03-05T21:05:34Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1f2930ce0bec07e28958c059444151ad4968e1e6'/>
<id>urn:sha1:1f2930ce0bec07e28958c059444151ad4968e1e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>various: remove unused variables</title>
<updated>2019-03-04T22:24:49Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-12-07T15:46:52Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ef93b0995c311e5d5f43a726dbe90aacca46faff'/>
<id>urn:sha1:ef93b0995c311e5d5f43a726dbe90aacca46faff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>daemon: add --public-node mode, RPC port propagation over P2P</title>
<updated>2019-02-24T23:40:23Z</updated>
<author>
<name>xiphon</name>
<email>xiphon@protonmail.com</email>
</author>
<published>2019-02-24T08:47:49Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=551104fbf1d2d82cad57d5ea240d1b7be2810ea1'/>
<id>urn:sha1:551104fbf1d2d82cad57d5ea240d1b7be2810ea1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Pruning</title>
<updated>2019-01-22T20:30:51Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-04-29T22:30:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b750fb27b0f20e9443827732b69a504a76036430'/>
<id>urn:sha1:b750fb27b0f20e9443827732b69a504a76036430</id>
<content type='text'>
The blockchain prunes seven eighths of prunable tx data.
This saves about two thirds of the blockchain size, while
keeping the node useful as a sync source for an eighth
of the blockchain.

No other data is currently pruned.

There are three ways to prune a blockchain:

- run monerod with --prune-blockchain
- run "prune_blockchain" in the monerod console
- run the monero-blockchain-prune utility

The first two will prune in place. Due to how LMDB works, this
will not reduce the blockchain size on disk. Instead, it will
mark parts of the file as free, so that future data will use
that free space, causing the file to not grow until free space
grows scarce.

The third way will create a second database, a pruned copy of
the original one. Since this is a new file, this one will be
smaller than the original one.

Once the database is pruned, it will stay pruned as it syncs.
That is, there is no need to use --prune-blockchain again, etc.
</content>
</entry>
<entry>
<title>Merge pull request #4753</title>
<updated>2018-11-14T19:33:02Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-11-14T19:33:01Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=59e8a4c30687990c1d658bede10d698ed57005d7'/>
<id>urn:sha1:59e8a4c30687990c1d658bede10d698ed57005d7</id>
<content type='text'>
157054b8 hardfork: initialize current_fork_index in ctor (moneromooo-monero)
2362baf7 network_throttle: initialize m_last_sample_time in ctor (moneromooo-monero)
d9400f69 serializtion: add missing mainnet and stagenet fields for 0mq (moneromooo-monero)
cbe0122b wallet2: initialize amount to 0 in tx_scan_info_t ctor (moneromooo-monero)
</content>
</entry>
<entry>
<title>serializtion: add missing mainnet and stagenet fields for 0mq</title>
<updated>2018-10-29T16:23:14Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-10-29T16:10:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d9400f69eb8ab69470d6f3040e73a255fc3e3b5e'/>
<id>urn:sha1:d9400f69eb8ab69470d6f3040e73a255fc3e3b5e</id>
<content type='text'>
Coverity 184940
</content>
</entry>
<entry>
<title>Update ZMQ fee estimate and add ZMQ output distribution</title>
<updated>2018-10-24T03:46:31Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2018-10-20T02:06:03Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6097472a195fe81b34c2e5ab83ff2a1786c2a5e3'/>
<id>urn:sha1:6097472a195fe81b34c2e5ab83ff2a1786c2a5e3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>v8: per byte fee, pad bulletproofs, fixed 11 ring size</title>
<updated>2018-09-11T13:38:07Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-07-18T21:24:53Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5ffb2ff9b7c301eda5811a939c705f26627c4735'/>
<id>urn:sha1:5ffb2ff9b7c301eda5811a939c705f26627c4735</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST</title>
<updated>2018-08-02T07:30:20Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2018-08-02T02:10:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4616cf2641c69e48ae19303099e701088ffe9045'/>
<id>urn:sha1:4616cf2641c69e48ae19303099e701088ffe9045</id>
<content type='text'>
</content>
</entry>
</feed>
