aboutsummaryrefslogtreecommitdiff
path: root/src/zmq
Commit message (Collapse)AuthorAgeFilesLines
* Modify chain consensus parameters to be height aware (#1396)Ross Nicoll2018-09-191-1/+1
| | | | | | | | | * Modify chain consensus parameters to be height aware * Correct implementation of simplified rewards in parameters * Correct max money * Use base block version in IsSuperMajority() instead of full version * Correct mining of blocks in AuxPoW tests * Add in missing pre-AuxPoW consensus checks
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-314-4/+4
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* Get rid of mapArgs direct access in ZMQ constructionMatt Corallo2016-12-242-5/+5
|
* Adapt ZMQ/rest serialization to take rpcserialversion arginstagibbs2016-12-051-2/+3
|
* Rename the remaining main.{h,cpp} to validation.{h,cpp}Matt Corallo2016-12-022-2/+2
|
* Move network-msg-processing code out of main to its own fileMatt Corallo2016-12-021-0/+1
|
* Always call UpdatedBlockTip, even if blocks were only disconnectedMatt Corallo2016-10-041-1/+1
|
* Make validationinterface.UpdatedBlockTip more verboseMatt Corallo2016-10-042-3/+6
| | | | | | In anticipation of making all the callbacks out of block processing flow through it. Note that vHashes will always have something in it since pindexFork != pindexNewTip.
* Merge #8607: [doc] Fix doxygen off-by-one comments, fix typosWladimir J. van der Laan2016-08-281-1/+1
|\ | | | | | | | | | | | | fafe7b3 contrib: Make fix-copyright-headers.py more portable (MarcoFalke) fa27c0a [doc] Fix typos in comments, doxygen: Fix comment syntax (MarcoFalke) fabfd5d [qa] pull-tester: Don't mute zmq ImportError (MarcoFalke) 67a5502 init: Fix typo in help message for -whitelistforcerelay (Wladimir J. van der Laan)
| * [doc] Fix typos in comments, doxygen: Fix comment syntaxMarcoFalke2016-08-221-1/+1
| |
* | Reduce cs_main locks during ConnectTip/SyncWithWalletsJonas Schnelli2016-08-122-2/+2
|/
* [ZMQ] append a message sequence number to every ZMQ notificationJonas Schnelli2016-04-192-8/+33
|
* [ZMQ] refactor message stringJonas Schnelli2016-04-151-4/+9
|
* Fixes ZMQ startup with bad arguments.mrbandrews2016-02-292-1/+1
|
* Merge #6480: include the chaintip blockindex in the SyncTransaction signal, ↵Wladimir J. van der Laan2016-02-042-2/+2
|\ | | | | | | | | | | add signal UpdateTip() 7d0bf0b include the chaintip *blockIndex in the SyncTransaction signal (Jonas Schnelli)
| * include the chaintip *blockIndex in the SyncTransaction signalJonas Schnelli2015-12-042-2/+2
| | | | | | | | | | - allows reducing of calls to main.cpp for getting the chaintip during transaction syncing - potentially allows reducing of cs_main locks
* | Bump copyright headers to 2014MarcoFalke2016-01-051-1/+1
|/
* zmq: prepend zmq to debug messagesDaniel Cousens2015-11-192-8/+8
|
* Merge pull request #6163Wladimir J. van der Laan2015-11-101-1/+3
|\ | | | | | | 87cbdb8 Globals: Explicit Consensus::Params arg for main: (Jorge Timón)
| * Globals: Explicit Consensus::Params arg for main:Jorge Timón2015-10-301-1/+3
| | | | | | | | | | | | | | | | | | -CheckBlockIndex -DisconnectTip -GetTransaction -InvalidateBlock -ProcessGetData -ReadBlockFromDisk
* | Fix ZMQ Notification initialization and shutdownJoão Barbosa2015-11-042-4/+10
|/ | | | | | Moves the call Initialize() from init.cpp to CreateWithArguments() and handles the return value. Moves the call Shutdown() from init.cpp to destructor. Changes Initialize() and Shutdown() to protected members.
* use CBlockIndex* insted of uint256 for UpdatedBlockTip signalJonas Schnelli2015-09-166-14/+17
| | | | | - removes mapBlockIndex find operation - theoretically allows removing the cs_main lock during zqm notification while introducing a new file position lock
* Add ZeroMQ support. Notify blocks and transactions via ZeroMQJeff Garzik2015-09-167-0/+491
Continues Johnathan Corgan's work. Publishing multipart messages Bugfix: Add missing zmq header includes Bugfix: Adjust build system to link ZeroMQ code for Qt binaries