cryptonote_core: fix blockchain init call after prototype change

This commit is contained in:
moneromooo-monero 2017-12-17 18:47:46 +00:00
parent a3a8343051
commit d9b137f161
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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");