aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_handler.h
Commit message (Collapse)AuthorAgeFilesLines
* zmq: add restricted rpc modeselsta2026-04-011-1/+2
|
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Switch to insitu parsing for ZMQ-JSON; GetBlocksFast reads 13%+ fasterLee Clagett2020-08-141-1/+1
|
* Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | Update copyright year to 2020
* Use byte_slice for sending zmq messages - removes data copy within zmqLee Clagett2020-04-031-1/+2
|
* Adding Dandelion++ support to public networks:Lee Clagett2020-03-261-1/+1
| | | | | | - New flag in NOTIFY_NEW_TRANSACTION to indicate stem mode - Stem loops detected in tx_pool.cpp - Embargo timeout for a blackhole attack during stem phase
* Various improvements to the ZMQ JSON-RPC handling:Lee Clagett2020-03-051-1/+1
| | | | | | | | | - Finding handling function in ZMQ JSON-RPC now uses binary search - Temporary `std::vector`s in JSON output now use `epee::span` to prevent allocations. - Binary -> hex in JSON output no longer allocates temporary buffer - C++ structs -> JSON skips intermediate DOM creation, and instead write directly to an output stream.
* Merge pull request #5207Riccardo Spagni2019-03-241-0/+4
|\ | | | | | | be6f426a rpc: Allow submitting tx as hex blob over ZMQ (Nathan Dorfman)
| * rpc: Allow submitting tx as hex blob over ZMQNathan Dorfman2019-02-271-0/+4
| |
* | Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* Update ZMQ fee estimate and add ZMQ output distributionLee Clagett2018-10-231-1/+3
|
* remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero2018-09-141-2/+0
|
* Readd copyright starting datexmr-eric2018-01-261-1/+1
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* Fix various oversights/bugs in ZMQ RPC server codeThomas Winget2017-09-051-4/+2
| | | | | | | | | - 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
* json serialization for rpc-relevant monero typesThomas Winget2017-09-051-0/+147
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