diff options
| author | Matt Corallo <[email protected]> | 2017-02-08 13:19:18 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-03-06 18:35:19 -0500 |
| commit | 735d9b5362aeca34c0e62006986fe9d82c24ca08 (patch) | |
| tree | 25e2a8ba6b29162ba94520e67f60b9f805e51f7d /src/init.cpp | |
| parent | CScheduler boost->std::function, use millisecs for times, not secs (diff) | |
| download | discoin-735d9b5362aeca34c0e62006986fe9d82c24ca08.tar.xz discoin-735d9b5362aeca34c0e62006986fe9d82c24ca08.zip | |
Use CScheduler for wallet flushing, remove ThreadFlushWalletDB
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 a311ee7d8..280793c72 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1639,7 +1639,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) #ifdef ENABLE_WALLET if (pwalletMain) - pwalletMain->postInitProcess(threadGroup); + pwalletMain->postInitProcess(scheduler); #endif return !fRequestShutdown; |