diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-05-06 10:02:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-05-06 10:03:09 +0200 |
| commit | efee32f38110965435c884a6bcf0f83695c4c75b (patch) | |
| tree | e1b985b21a579b5cd4d52b7a4c4586dbf1496b6c /src/main.cpp | |
| parent | Merge #7907: Optimize and Cleanup CScript::FindAndDelete (diff) | |
| parent | Break circular dependency main ↔ txdb (diff) | |
| download | discoin-efee32f38110965435c884a6bcf0f83695c4c75b.tar.xz discoin-efee32f38110965435c884a6bcf0f83695c4c75b.zip | |
Merge #7815: Break circular dependency main ↔ txdb
99e7075 Break circular dependency main ↔ txdb (Wladimir J. van der Laan)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index d2b7c6bc4..92a38f230 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3705,7 +3705,7 @@ CBlockIndex * InsertBlockIndex(uint256 hash) bool static LoadBlockIndexDB() { const CChainParams& chainparams = Params(); - if (!pblocktree->LoadBlockIndexGuts()) + if (!pblocktree->LoadBlockIndexGuts(InsertBlockIndex)) return false; boost::this_thread::interruption_point(); |