aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-17 18:47:46 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-17 18:47:46 +0000
commitd9b137f161e03a3c25129334a43b6438100df73f (patch)
tree810d395670a5ffa06621db0a301142e68a5c593b
parentMerge pull request #2857 (diff)
downloadmonero-d9b137f161e03a3c25129334a43b6438100df73f.tar.xz
cryptonote_core: fix blockchain init call after prototype change
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp2
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");