aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_messages.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add new dynamic fees to ZMQLee Clagett2025-06-131-0/+2
|
* Fix missing checks for IsObject in ZMQ jsonrpc readingLee Clagett2023-11-281-0/+201
|
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | Update copyright year to 2020
* Add byte_stream for zero-copy serialization, and add support in ZMQ-JSON.Lee Clagett2020-04-111-53/+53
|
* Various improvements to the ZMQ JSON-RPC handling:Lee Clagett2020-03-051-428/+190
| | | | | | | | | - 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/+17
|\ | | | | | | 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/+17
| |
* | Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* remove some unused codemoneromooo-monero2018-11-231-72/+0
| | | | Found by codacy.com
* Update ZMQ fee estimate and add ZMQ output distributionLee Clagett2018-10-231-7/+51
|
* remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero2018-09-141-37/+0
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* Fix various oversights/bugs in ZMQ RPC server codeThomas Winget2017-09-051-26/+126
| | | | | | | | | - 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/+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