aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2016-11-23 16:19:14 -0800
committerPieter Wuille <[email protected]>2016-11-23 16:27:16 -0800
commit93566e0c37c5ae104095474fea89f00dcb40f551 (patch)
treebdcba79f520572e65f086dd7bede1eb8695ebbfd /src/main.h
parentMerge #9199: Always drop the least preferred HB peer when adding a new one. (diff)
parentMove orphan-conflict removal from main logic into a callback (diff)
downloaddiscoin-93566e0c37c5ae104095474fea89f00dcb40f551.tar.xz
discoin-93566e0c37c5ae104095474fea89f00dcb40f551.zip
Merge #8930: Move orphan processing to ActivateBestChain
d2b88f9 Move orphan-conflict removal from main logic into a callback (Matt Corallo) 97e2802 Erase orphans per-transaction instead of per-block (Matt Corallo) ec4525c Move orphan processing to ActivateBestChain (Matt Corallo)
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
index 48fc3306f..43c62f6de 100644
--- a/src/main.h
+++ b/src/main.h
@@ -560,6 +560,7 @@ private:
public:
PeerLogicValidation(CConnman* connmanIn);
+ virtual void SyncTransaction(const CTransaction& tx, const CBlockIndex* pindex, int nPosInBlock);
virtual void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload);
virtual void BlockChecked(const CBlock& block, const CValidationState& state);
};