<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/daemon/rpc_command_executor.h, branch v0.10.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.10.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.10.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2016-09-18T19:32:02Z</updated>
<entry>
<title>epee: optionally restrict HTTP service to a configurable user agent</title>
<updated>2016-09-18T19:32:02Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-09-07T20:38:41Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=eeb2bbc0fcc9c5afa2c3aa12915b4d3f31115e56'/>
<id>urn:sha1:eeb2bbc0fcc9c5afa2c3aa12915b4d3f31115e56</id>
<content type='text'>
This is intended to catch traffic coming from a web browser,
so we avoid issues with a web page sending a transfer RPC to
the wallet. Requiring a particular user agent can act as a
simple password scheme, while we wait for 0MQ and proper
authentication to be merged.
</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>new flush_txpool command, and associated RPC call</title>
<updated>2016-01-30T13:28:26Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-01-30T13:28:26Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=bf6d1474c097ee0affe827fe2e3dac489b290f40'/>
<id>urn:sha1:bf6d1474c097ee0affe827fe2e3dac489b290f40</id>
<content type='text'>
It can flush a particular tx, or the whole pool (the RPC command
can flush a list of transactions too)
</content>
</entry>
<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>add RPC calls and commands to get/set bans</title>
<updated>2015-11-26T00:04:22Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-11-26T00:04:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=38ceb73848a3c37df60bce637d855b7564b09730'/>
<id>urn:sha1:38ceb73848a3c37df60bce637d855b7564b09730</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rpc: fix start_mining and status RPC crashes</title>
<updated>2015-10-28T18:09:36Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-10-28T18:08:14Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=051ddbc741b1b703f5d58193ea770b13887d4e49'/>
<id>urn:sha1:051ddbc741b1b703f5d58193ea770b13887d4e49</id>
<content type='text'>
They check whether they're running on testnet by accessing the
m_rpc_server object, which does not exist when in RPC mode.

Also, fix hard_fork_info being called with the wrong API.
</content>
</entry>
<entry>
<title>daemon: add a status command</title>
<updated>2015-10-25T21:36:46Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-10-25T21:18:03Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=9caf52bf5a282bda0b70d8fdc6e39f74883e7043'/>
<id>urn:sha1:9caf52bf5a282bda0b70d8fdc6e39f74883e7043</id>
<content type='text'>
Displays current block height and target, net hash, hard fork
basic info, and connections.
Useful as a basic user friendly "what's going on here" command.
</content>
</entry>
<entry>
<title>Add an RPC call and daemon command to get info on hard fork voting</title>
<updated>2015-09-19T15:47:48Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-09-19T15:34:29Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e546f3724aeb91e72df263c27780a4d149b0a92a'/>
<id>urn:sha1:e546f3724aeb91e72df263c27780a4d149b0a92a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a is_key_image_spent daemon command and RPC call</title>
<updated>2015-08-11T09:52:41Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2015-08-11T09:49:15Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=83bbea4c7f47d05933ec1b5baca2e9724561e49c'/>
<id>urn:sha1:83bbea4c7f47d05933ec1b5baca2e9724561e49c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cleaning up, removing redundant files, renaming, fixing incorrect licenses</title>
<updated>2015-05-31T11:40:18Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2015-05-31T11:40:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e01d32e52d862d590ec23a17d3460066639a3803'/>
<id>urn:sha1:e01d32e52d862d590ec23a17d3460066639a3803</id>
<content type='text'>
</content>
</entry>
</feed>
