aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-06-25 10:01:21 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-06-25 10:26:01 +0200
commitd609fd85ca41c003233d74fbd6c680970ad4a48b (patch)
tree3aabeb5fbf86f88a3f13f0230e8840357fe6b93f /src/txdb.h
parentbef02fb6ac9f57fdb490f6a5725cde6bde0da124 (diff)
parentb324b2820903e777f3bbf5bf96686bbe723d8df7 (diff)
downloadbitcoin-d609fd85ca41c003233d74fbd6c680970ad4a48b.tar.xz
Merge #9176: Globals: Pass Consensus::Params through CBlockTreeDB::LoadBlockIndexGuts()
b324b28 Globals: Pass Consensus::Params through CBlockTreeDB::LoadBlockIndexGuts() (Jorge Timón) Tree-SHA512: 9ef561a026960dc69df52603f4d60246c913bdd127465e8238f0954c6bbbc6b8b3b039bab70df38be1cbf5d06788fb631a2236b49c0167633d54366103c7c055
Diffstat (limited to 'src/txdb.h')
-rw-r--r--src/txdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h
index 974dd4ebe3..2a3e4eb696 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -122,7 +122,7 @@ public:
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &list);
bool WriteFlag(const std::string &name, bool fValue);
bool ReadFlag(const std::string &name, bool &fValue);
- bool LoadBlockIndexGuts(std::function<CBlockIndex*(const uint256&)> insertBlockIndex);
+ bool LoadBlockIndexGuts(const Consensus::Params& consensusParams, std::function<CBlockIndex*(const uint256&)> insertBlockIndex);
};
#endif // BITCOIN_TXDB_H