diff options
| author | Matt Corallo <[email protected]> | 2017-09-30 23:49:59 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-10-13 19:30:15 -0400 |
| commit | 3ea8b75281edc60078423bd5d277cd2a84aa5d33 (patch) | |
| tree | 0db0d4510f04c1bbf1fd4f8a8199415ec67459e9 /src/validationinterface.cpp | |
| parent | Fix wallet RPC race by waiting for callbacks in sendrawtransaction (diff) | |
| download | discoin-3ea8b75281edc60078423bd5d277cd2a84aa5d33.tar.xz discoin-3ea8b75281edc60078423bd5d277cd2a84aa5d33.zip | |
Give ZMQ consistent order with UpdatedBlockTip on scheduler thread
Note that UpdatedBlockTip is also used in net_processing to
announce new blocks to peers. As this may need additional review,
this change is included in its own commit.
Diffstat (limited to 'src/validationinterface.cpp')
| -rw-r--r-- | src/validationinterface.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/validationinterface.cpp b/src/validationinterface.cpp index c6a021119..d91707cf9 100644 --- a/src/validationinterface.cpp +++ b/src/validationinterface.cpp @@ -117,7 +117,9 @@ void CMainSignals::MempoolEntryRemoved(CTransactionRef ptx, MemPoolRemovalReason } void CMainSignals::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) { - m_internals->UpdatedBlockTip(pindexNew, pindexFork, fInitialDownload); + m_internals->m_schedulerClient.AddToProcessQueue([pindexNew, pindexFork, fInitialDownload, this] { + m_internals->UpdatedBlockTip(pindexNew, pindexFork, fInitialDownload); + }); } void CMainSignals::TransactionAddedToMempool(const CTransactionRef &ptx) { |