aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-12-17 21:04:17 +0200
committerRiccardo Spagni <ric@spagni.net>2017-12-17 21:04:17 +0200
commit2879a9be3cc8a9777e528785615e00fa7d5534ac (patch)
tree810d395670a5ffa06621db0a301142e68a5c593b
parentMerge pull request #2857 (diff)
parentcryptonote_core: fix blockchain init call after prototype change (diff)
downloadmonero-2879a9be3cc8a9777e528785615e00fa7d5534ac.tar.xz
Merge pull request #2950
d9b137f1 cryptonote_core: fix blockchain init call after prototype change (moneromooo-monero)
-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");