aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/message_data_structs.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-03-05Stagenetstoffu1-0/+2
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2017-11-06track double spending in the txpoolmoneromooo-monero1-0/+1
Transactions in the txpool are marked when another transaction is seen double spending one or more of its inputs. This is then exposed wherever appropriate. Note that being marked with this "double spend seen" flag does NOT mean this transaction IS a double spend and will never be mined: it just means that the network has seen at least another transaction spending at least one of the same inputs, so care should be taken to wait for a few confirmations before acting upon that transaction (ie, mostly of use for merchants wanting to accept unconfirmed transactions).
2017-09-05Fix various oversights/bugs in ZMQ RPC server codeThomas Winget1-0/+20
- 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/+169
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