diff options
author | Geoffrey Tsui <tsui.geoffrey@gmail.com> | 2016-10-25 22:35:26 +0800 |
---|---|---|
committer | Geoffrey Tsui <tsui.geoffrey@gmail.com> | 2016-10-25 22:35:26 +0800 |
commit | d0b01f3a859eacc51a28fc18d2ed7e361ec90833 (patch) | |
tree | 52f988b2d7f53d2624a40ba76839bfe031635908 /src/main.cpp | |
parent | 9bdf5269f8860b41455df1c6d82dac0d9c858e8f (diff) |
Explicitly pass const CChainParams& to LoadBlockIndexDB()
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5e17ec6251..0ee54a27d5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3966,9 +3966,8 @@ CBlockIndex * InsertBlockIndex(uint256 hash) return pindexNew; } -bool static LoadBlockIndexDB() +bool static LoadBlockIndexDB(const CChainParams& chainparams) { - const CChainParams& chainparams = Params(); if (!pblocktree->LoadBlockIndexGuts(InsertBlockIndex)) return false; @@ -4297,10 +4296,10 @@ void UnloadBlockIndex() fHavePruned = false; } -bool LoadBlockIndex() +bool LoadBlockIndex(const CChainParams& chainparams) { // Load block index from databases - if (!fReindex && !LoadBlockIndexDB()) + if (!fReindex && !LoadBlockIndexDB(chainparams)) return false; return true; } |