aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_handler.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-01-28Adding initial support for broadcasting transactions over TorLee Clagett1-4/+4
- Support for ".onion" in --add-exclusive-node and --add-peer - Add --anonymizing-proxy for outbound Tor connections - Add --anonymous-inbounds for inbound Tor connections - Support for sharing ".onion" addresses over Tor connections - Support for broadcasting transactions received over RPC exclusively over Tor (else broadcast over public IP when Tor not enabled).
2018-11-21rpc: add version to get_infoJethro Grassie1-0/+2
2018-11-16tests: add unit tests for get_output_distributionmoneromooo-monero1-1/+1
2018-10-23Update ZMQ fee estimate and add ZMQ output distributionLee Clagett1-3/+45
2018-09-14remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero1-39/+0
2018-09-11v8: per byte fee, pad bulletproofs, fixed 11 ring sizemoneromooo-monero1-2/+3
2018-08-02Fixed ZMQ-RPC for transactions and GET_BLOCKS_FASTLee Clagett1-25/+17
2018-06-26rpc: rework to avoid repeated calculations in get_blocks.binmoneromooo-monero1-5/+5
2018-06-26replace std::list with std::vector on some hot pathsmoneromooo-monero1-23/+7
also use reserve where appropriate
2018-05-23db_lmdb: save pruned and prunable tx data separatelymoneromooo-monero1-1/+1
This bumps DB version to 2, migration code will run for v1 DBs
2018-03-05Stagenetstoffu1-3/+5
2018-01-26Readd copyright starting datexmr-eric1-1/+1
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2017-12-18add empty container sanity checks when using front() and back()moneromooo-monero1-0/+4
2017-12-16move includes around to lessen overall loadmoneromooo-monero1-1/+1
2017-10-07Subaddresseskenshi841-4/+11
2017-09-25move checkpoints in a separate librarymoneromooo-monero1-1/+1
2017-09-05Fix various oversights/bugs in ZMQ RPC server codeThomas Winget1-42/+129
- Add some RPC commands (and touch up a couple others) - some bounds checking - some better pointer management - const correctness and error handling -- Thanks @vtnerd for type help with serialization and CMake changes
2017-09-05json serialization for rpc-relevant monero typesThomas Winget1-0/+800
Structured {de-,}serialization methods for (many new) types which are used for requests or responses in the RPC. New types include RPC requests and responses, and structs which compose types within those. # Conflicts: # src/cryptonote_core/blockchain.cpp