diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 18:47:46 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 18:47:46 +0000 |
| commit | d9b137f161e03a3c25129334a43b6438100df73f (patch) | |
| tree | 810d395670a5ffa06621db0a301142e68a5c593b | |
| parent | a3a8343051abfe081c5726bb6ac9d44095068d07 (diff) | |
| download | monzero-core-d9b137f161e03a3c25129334a43b6438100df73f.tar.gz monzero-core-d9b137f161e03a3c25129334a43b6438100df73f.tar.xz monzero-core-d9b137f161e03a3c25129334a43b6438100df73f.zip | |
cryptonote_core: fix blockchain init call after prototype change
| -rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 960a07832..415657f9c 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -468,7 +468,7 @@ namespace cryptonote m_blockchain_storage.set_user_options(blocks_threads, blocks_per_sync, sync_mode, fast_sync); - r = m_blockchain_storage.init(db, m_testnet, test_options); + r = m_blockchain_storage.init(db, m_testnet, m_offline, test_options); r = m_mempool.init(); CHECK_AND_ASSERT_MES(r, false, "Failed to initialize memory pool"); |
