<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/cryptonote_core/blockchain.cpp, branch v0.9.4</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.4</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.9.4'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2016-04-02T03:02:07Z</updated>
<entry>
<title>Merge pull request #767</title>
<updated>2016-04-02T03:02:07Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-04-02T03:02:07Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=a38ad63f8f0c9941ea964519f8e9d25db5e594b2'/>
<id>urn:sha1:a38ad63f8f0c9941ea964519f8e9d25db5e594b2</id>
<content type='text'>
24b3e90 Convey tx verification failure reasons to the RPC client (moneromooo-monero)
</content>
</entry>
<entry>
<title>Merge pull request #765</title>
<updated>2016-03-27T12:09:53Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-03-27T12:09:53Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=2b57845766ee41fef14166219b9f3aa8ba3f68a2'/>
<id>urn:sha1:2b57845766ee41fef14166219b9f3aa8ba3f68a2</id>
<content type='text'>
d5d46e6 tests: obligatory hardfork unit build fix after interface change (moneromooo-monero)
25672d3 wallet: pass std::function by const ref, not value (moneromooo-monero)
0be6e08 wallet: do not leak owned amounts to the daemon unless --trusted-daemon (moneromooo-monero)
12146da wallet: change sweep_dust to sweep_unmixable (moneromooo-monero)
600a3cf New RPC and daemon command to get output histogram (moneromooo-monero)
f9a2fd2 wallet: handle rare case where fee adjustment can bump to the next kB (moneromooo-monero)
f26651a wallet: factor fee calculation (moneromooo-monero)
</content>
</entry>
<entry>
<title>Convey tx verification failure reasons to the RPC client</title>
<updated>2016-03-27T11:37:18Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-03-27T11:35:36Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=24b3e9007a8ad0684edcee51df444b21a033e4ba'/>
<id>urn:sha1:24b3e9007a8ad0684edcee51df444b21a033e4ba</id>
<content type='text'>
This allows appropriate action to be taken, like displaying
the reason to the user.

Do just that in simplewallet, which should help a lot in
determining why users fail to send.

Also make it so a tx which is accepted but not relayed is
seen as a success rather than a failure.
</content>
</entry>
<entry>
<title>New RPC and daemon command to get output histogram</title>
<updated>2016-03-26T21:10:43Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-03-26T14:30:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=600a3cf0c0ca0a99dbdc91d32138db3c8aa4165c'/>
<id>urn:sha1:600a3cf0c0ca0a99dbdc91d32138db3c8aa4165c</id>
<content type='text'>
This is a list of existing output amounts along with the number
of outputs of that amount in the blockchain.

The daemon command takes:
- no parameters: all outputs with at least 3 instances
- one parameter: all outputs with at least that many instances
- two parameters: all outputs within that many instances

The default starts at 3 to avoid massive spamming of all dust
outputs in the blockchain, and is the current minimum mixin
requirement.

An optional vector of amounts may be passed, to request
histogram only for those outputs.
</content>
</entry>
<entry>
<title>blockchain: for v3, require miner tx to have well behaved outs</title>
<updated>2016-03-25T15:11:53Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-03-23T17:56:08Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b8527668ffbcc4c95fe33e2ea163f07f25af5fcb'/>
<id>urn:sha1:b8527668ffbcc4c95fe33e2ea163f07f25af5fcb</id>
<content type='text'>
This was meant to go in v2, but the miner tx slipped through
the cracks as it doesn't go through the main tx verification
since it doesn't get added to the pool.
</content>
</entry>
<entry>
<title>Merge pull request #749</title>
<updated>2016-03-25T07:12:25Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-03-25T06:22:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0d30b657859d6ebd3188bd16dfaa9c79c3dfcaa7'/>
<id>urn:sha1:0d30b657859d6ebd3188bd16dfaa9c79c3dfcaa7</id>
<content type='text'>
bfd4a28 Update BlockchainDB documentation (Thomas Winget)
797357e Change Doxyfile, Blockchain not blockchain_storage (Thomas Winget)
c835215 remove defunct code from cryptonote::core (Thomas Winget)
50dba6d cryptonote::core doxygen documentation (Thomas Winget)
8ac329d doxygen documentation for difficulty functions (Thomas Winget)
540a76c Move checkpoint functions into checkpoints class (Thomas Winget)
1b0c98e doxygen documentation for checkpoints.{h,cpp} (Thomas Winget)
89c24ac Remove unnecessary or defunct code (Thomas Winget)
ab0ed14 doxygen include private and static members (Thomas Winget)
3a48449 Updated documentation for blockchain.* (Thomas Winget)
</content>
</entry>
<entry>
<title>Revert "Merge pull request #749"</title>
<updated>2016-03-25T06:42:42Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-03-25T06:42:42Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=01e0a69c175852adb01897431a138739faf39fe1'/>
<id>urn:sha1:01e0a69c175852adb01897431a138739faf39fe1</id>
<content type='text'>
This reverts commit 7fa63a82a1c3a0243f6757c1689855ed3ca61695, reversing
changes made to cb6be986c36b78eddb4b7f16e9ad440af8567dc4.
</content>
</entry>
<entry>
<title>Merge pull request #749</title>
<updated>2016-03-25T06:22:06Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-03-25T06:22:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7fa63a82a1c3a0243f6757c1689855ed3ca61695'/>
<id>urn:sha1:7fa63a82a1c3a0243f6757c1689855ed3ca61695</id>
<content type='text'>
bfd4a28 Update BlockchainDB documentation (Thomas Winget)
797357e Change Doxyfile, Blockchain not blockchain_storage (Thomas Winget)
c835215 remove defunct code from cryptonote::core (Thomas Winget)
50dba6d cryptonote::core doxygen documentation (Thomas Winget)
8ac329d doxygen documentation for difficulty functions (Thomas Winget)
540a76c Move checkpoint functions into checkpoints class (Thomas Winget)
1b0c98e doxygen documentation for checkpoints.{h,cpp} (Thomas Winget)
89c24ac Remove unnecessary or defunct code (Thomas Winget)
ab0ed14 doxygen include private and static members (Thomas Winget)
3a48449 Updated documentation for blockchain.* (Thomas Winget)
</content>
</entry>
<entry>
<title>Move checkpoint functions into checkpoints class</title>
<updated>2016-03-24T07:39:41Z</updated>
<author>
<name>Thomas Winget</name>
<email>tewinget@gmail.com</email>
</author>
<published>2015-10-08T02:28:37Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=540a76c5c29aa0742c00af4391ce718e7ec69c97'/>
<id>urn:sha1:540a76c5c29aa0742c00af4391ce718e7ec69c97</id>
<content type='text'>
The functions in src/cryptonote_core/checkpoints_create.{h,cpp} should
be member functions of the checkpoints class, if nothing else for the
sake of keeping their documentation together.

This commit covers moving those functions to be member functions of the
checkpoints class as well as documenting those functions.
</content>
</entry>
<entry>
<title>Remove unnecessary or defunct code</title>
<updated>2016-03-23T00:23:06Z</updated>
<author>
<name>Thomas Winget</name>
<email>tewinget@gmail.com</email>
</author>
<published>2015-10-08T02:25:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=89c24ac2be8b00474cd3f0973ee458a6e80f76f3'/>
<id>urn:sha1:89c24ac2be8b00474cd3f0973ee458a6e80f76f3</id>
<content type='text'>
</content>
</entry>
</feed>
