diff options
| author | Pieter Wuille <[email protected]> | 2016-08-15 11:49:12 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-08-15 11:56:37 +0200 |
| commit | d727f77e390426e9e463336bda08d50c451c7086 (patch) | |
| tree | 54210ccae89ab186979cde99d33c99fad483daa9 /src/validationinterface.h | |
| parent | Merge #8353: Trivial: tiny c++11 refactors (diff) | |
| parent | Reduce cs_main locks during ConnectTip/SyncWithWallets (diff) | |
| download | discoin-d727f77e390426e9e463336bda08d50c451c7086.tar.xz discoin-d727f77e390426e9e463336bda08d50c451c7086.zip | |
Merge #7946: Reduce cs_main locks during ConnectTip/SyncWithWallets
b3b3c2a Reduce cs_main locks during ConnectTip/SyncWithWallets (Jonas Schnelli)
Diffstat (limited to 'src/validationinterface.h')
| -rw-r--r-- | src/validationinterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/validationinterface.h b/src/validationinterface.h index 01b8e4765..094b1cfe2 100644 --- a/src/validationinterface.h +++ b/src/validationinterface.h @@ -28,12 +28,12 @@ void UnregisterValidationInterface(CValidationInterface* pwalletIn); /** Unregister all wallets from core */ void UnregisterAllValidationInterfaces(); /** Push an updated transaction to all registered wallets */ -void SyncWithWallets(const CTransaction& tx, const CBlockIndex *pindex, const CBlock* pblock = NULL); +void SyncWithWallets(const CTransaction& tx, const CBlockIndex *pindex, int posInBlock = -1); class CValidationInterface { protected: virtual void UpdatedBlockTip(const CBlockIndex *pindex) {} - virtual void SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, const CBlock *pblock) {} + virtual void SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, int posInBlock) {} virtual void SetBestChain(const CBlockLocator &locator) {} virtual void UpdatedTransaction(const uint256 &hash) {} virtual void Inventory(const uint256 &hash) {} @@ -50,7 +50,7 @@ struct CMainSignals { /** Notifies listeners of updated block chain tip */ boost::signals2::signal<void (const CBlockIndex *)> UpdatedBlockTip; /** Notifies listeners of updated transaction data (transaction, and optionally the block it is found in. */ - boost::signals2::signal<void (const CTransaction &, const CBlockIndex *pindex, const CBlock *)> SyncTransaction; + boost::signals2::signal<void (const CTransaction &, const CBlockIndex *pindex, int posInBlock)> SyncTransaction; /** Notifies listeners of an updated transaction without new data (for now: a coinbase potentially becoming visible). */ boost::signals2::signal<void (const uint256 &)> UpdatedTransaction; /** Notifies listeners of a new active block chain. */ |