<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/tests/unit_tests/hardfork.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-03-16T10:32:26Z</updated>
<entry>
<title>add RPC to get a histogram of outputs of a given amount</title>
<updated>2018-03-16T10:32:26Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-02-19T11:15:15Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=41f727ce42d0fce9e40e4da7bf4abda92eef1016'/>
<id>urn:sha1:41f727ce42d0fce9e40e4da7bf4abda92eef1016</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>Fix exceptions not finding txpool txes when relaying</title>
<updated>2017-12-20T13:02:53Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-12-14T17:09:30Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ae8602303a0285abd28c044309a8456c748b34a3'/>
<id>urn:sha1:ae8602303a0285abd28c044309a8456c748b34a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Protect node privacy by proper filtering in restricted-mode RPC answers</title>
<updated>2017-11-08T12:07:07Z</updated>
<author>
<name>binaryFate</name>
<email>binaryfate@users.noreply.github.com</email>
</author>
<published>2017-11-08T12:06:41Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=10013e94342c0d9ca2f10c79779b08affc5209c1'/>
<id>urn:sha1:10013e94342c0d9ca2f10c79779b08affc5209c1</id>
<content type='text'>
This patch allows to filter out sensitive information for queries that rely on the pool state, when running in restricted mode.
This filtering is only applied to data sent back to RPC queries. Results of inline commands typed locally in the daemon are not affected.
In practice, when running with `--restricted-rpc`:
* get_transaction_pool will list relayed transactions with the fields "last relayed time" and "received time" set to zero.
* get_transaction_pool will not list transaction that have do_not_relay set to true, and will not list key images that are used only for such transactions
* get_transaction_pool_hashes.bin will not list such transaction
* get_transaction_pool_stats will not count such transactions in any of the aggregated values that are computed

The implementation does not make filtering the default, so developers should be mindful of this if they add new RPC functionality.
Fixes #2590.
</content>
</entry>
<entry>
<title>Use actual batch size for resize estimates</title>
<updated>2017-09-17T21:08:40Z</updated>
<author>
<name>Howard Chu</name>
<email>hyc@symas.com</email>
</author>
<published>2017-09-16T23:12:42Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d2d8a41c47b408df35d1379255fc009f50a0b770'/>
<id>urn:sha1:d2d8a41c47b408df35d1379255fc009f50a0b770</id>
<content type='text'>
And optimize import startup:

Remember start_height position during initial count_blocks pass
to avoid having to reread entire file again to arrive at start_height
</content>
</entry>
<entry>
<title>Toggle SAFE syncmode on and off automatically</title>
<updated>2017-08-20T15:30:28Z</updated>
<author>
<name>Howard Chu</name>
<email>hyc@symas.com</email>
</author>
<published>2017-08-19T18:36:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=9a859844f496158b8237bbd08ff0f608dc5a6385'/>
<id>urn:sha1:9a859844f496158b8237bbd08ff0f608dc5a6385</id>
<content type='text'>
If monerod is started with default sync mode, set it to SAFE after
synchronization completes. Set it back to FAST if synchronization
restarts (e.g. because another peer has a longer blockchain).

If monerod is started with an explicit sync mode, none of this
automation takes effect.
</content>
</entry>
<entry>
<title>DB cleanup</title>
<updated>2017-08-19T17:11:38Z</updated>
<author>
<name>Howard Chu</name>
<email>hyc@symas.com</email>
</author>
<published>2017-08-19T14:27:13Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4c7f8ac04f8693c321f4143e61e7511f200cab1d'/>
<id>urn:sha1:4c7f8ac04f8693c321f4143e61e7511f200cab1d</id>
<content type='text'>
Hide LMDB-specific stuff behind blockchain_db.h. Nobody besides blockchain_db.cpp
should ever be including DB-specific headers any more.
</content>
</entry>
<entry>
<title>blockchain_db: add a txpool tx getter which returns existence</title>
<updated>2017-06-11T14:36:48Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-06-11T14:10:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=235df7f4848fb597739c50e3a31007ae77f008f1'/>
<id>urn:sha1:235df7f4848fb597739c50e3a31007ae77f008f1</id>
<content type='text'>
Avoids exception spam for the "nope, not found" case
</content>
</entry>
<entry>
<title>Don't copy blockchain for coinbase_tx_sum</title>
<updated>2017-06-01T13:14:24Z</updated>
<author>
<name>Howard Chu</name>
<email>hyc@symas.com</email>
</author>
<published>2017-06-01T12:29:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7'/>
<id>urn:sha1:d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7</id>
<content type='text'>
Changed Blockchain::for_all_blocks() to for_blocks_range()
Operate on blockchain in-place instead of building a copy first.
</content>
</entry>
<entry>
<title>Move txpool to the database</title>
<updated>2017-05-25T21:23:37Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-05-14T13:06:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b52abd1370cc21484d64f45504adbab47240debf'/>
<id>urn:sha1:b52abd1370cc21484d64f45504adbab47240debf</id>
<content type='text'>
Integration could go further (ie, return_tx_to_pool calls should
not be needed anymore, possibly other things).

poolstate.bin is now obsolete.
</content>
</entry>
</feed>
