aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-11-23 16:19:14 -0800
committerPieter Wuille <pieter.wuille@gmail.com>2016-11-23 16:27:16 -0800
commit93566e0c37c5ae104095474fea89f00dcb40f551 (patch)
treebdcba79f520572e65f086dd7bede1eb8695ebbfd /src/main.h
parent407d9232ef5cb1ebf6cff21f3d13e07ea4158eeb (diff)
parentd2b88f97a1235057290f9e8ca0bf11437ba919f8 (diff)
downloadbitcoin-93566e0c37c5ae104095474fea89f00dcb40f551.tar.xz
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 48fc3306f9..43c62f6de6 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);
};