aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/rpc_command_executor.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2015-12-31updated copyright yearRiccardo Spagni1-1/+1
2015-12-18print top block hash in daemon diff commandmoneromooo-monero1-0/+1
and add top block hash in get_info RPC
2015-12-07daemon: add mining status to the status commandmoneromooo-monero1-8/+22
2015-11-30Merge pull request #503Riccardo Spagni1-2/+2
55e5a33 rpc: pass current block target in rpc (moneromooo-monero)
2015-11-26rpc: pass current block target in rpcmoneromooo-monero1-2/+2
This fixes the hash rate being wrong on testnet after the switch to 2 minute blocks
2015-11-26add RPC calls and commands to get/set bansmoneromooo-monero1-0/+106
2015-11-23daemon: fix blockchain height display not updating after syncmoneromooo-monero1-1/+1
2015-10-28rpc: fix start_mining and status RPC crashesmoneromooo-monero1-4/+4
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.
2015-10-26Merge pull request #448Riccardo Spagni1-7/+9
06c65cb rpc: fix hard_fork_info RPC (moneromooo-monero) 6f5c129 rpc: fix a few commands not working as command line (moneromooo-monero)
2015-10-26rpc: fix hard_fork_info RPCmoneromooo-monero1-4/+6
I had never tested it, obviously
2015-10-26rpc: fix a few commands not working as command linemoneromooo-monero1-3/+3
The method name to the "json_rpc" commands are names, not part of URLs.
2015-10-25daemon: add a status commandmoneromooo-monero1-0/+55
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.
2015-10-13core_rpc_server: add a getblock RPC command, and fix print_blockmoneromooo-monero1-8/+10
2015-09-19Add an RPC call and daemon command to get info on hard fork votingmoneromooo-monero1-0/+31
2015-08-11Add a is_key_image_spent daemon command and RPC callmoneromooo-monero1-0/+36
2015-08-09daemon: omit extra set of <> in error messagemoneromooo-monero1-1/+1
The string conversion already adds them
2015-08-09daemon: print a decoded tx in print_txmoneromooo-monero1-0/+18
in addition to the raw hex representation
2015-08-09daemon: fix print_tx not find transactionsmoneromooo-monero1-0/+1
It was not even trying to
2015-05-31cleaning up, removing redundant files, renaming, fixing incorrect licensesRiccardo Spagni1-7/+7
2015-05-28rpc_command_executor: fix mining in testnet modemoneromooo-monero1-2/+1
2015-05-17print limits when running limit commands with no argumentsmoneromooo-monero1-0/+23
It's more user friendly that an error message saying the command does not exist.
2015-04-23Add mempool output to daemon via command and RPCwarptangent1-13/+50
This is for the "print_pool" command and "get_transaction_pool" RPC method. Add mempool's spent key images to the results.
2015-04-10[fix] log level change. compilation: dns, testsrfree2monero1-1/+2
old unbound #warning does not block compilation unit tests build fine. Even though the RPC/P2P network type is required again
2015-04-10Fixes start_mining in cli interactive modeThomas Winget1-2/+16
2015-04-01remerged; commands JSON. logging upgrade. doxygenrfree2monero1-12/+140
2015-03-27Restore daemon interactive modeThomas Winget1-75/+351
Daemon interactive mode is now working again. RPC mapped calls in daemon and wallet have both had connection_context removed as an argument as that argument was not being used anywhere.
2015-02-24RPC calls for background daemon added inThomas Winget1-26/+7
The RPC calls the daemon executable uses to talk to the running daemon instance have mostly been added back in. Rate limiting has not been added in upstream, but is on its way in a separate effort, so those calls are still NOPed out.
2015-02-24Daemonize changes pulled in -- daemon buildsThomas Winget1-0/+435
many RPC functions added by the daemonize changes (and related changes on the upstream dev branch that were not merged) were commented out (apart from return). Other than that, this *should* work...at any rate, it builds, and that's something.