diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-11-02 21:09:24 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-11-02 21:09:27 +0100 |
| commit | c05db8348838422ec6bbfeef30faee36562af13d (patch) | |
| tree | fc6898fa79622feb759c78209ea9f591f7244ae3 /src/init.cpp | |
| parent | Merge #9042: [rpc] ParseHash: Fail when length is not 64 (diff) | |
| parent | Explicitly pass const CChainParams& to LoadBlockIndexDB() (diff) | |
| download | discoin-c05db8348838422ec6bbfeef30faee36562af13d.tar.xz discoin-c05db8348838422ec6bbfeef30faee36562af13d.zip | |
Merge #9013: Trivial: Explicitly pass const CChainParams& to LoadBlockIndexDB()
d0b01f3 Explicitly pass const CChainParams& to LoadBlockIndexDB() (Geoffrey Tsui)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index efaf821f4..29a242a79 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1323,7 +1323,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) CleanupBlockRevFiles(); } - if (!LoadBlockIndex()) { + if (!LoadBlockIndex(chainparams)) { strLoadError = _("Error loading block database"); break; } |