diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-07-09 12:45:05 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-07-09 12:45:05 -0500 |
| commit | cb882dfc552e5a0144043cc1a355ea81d908d244 (patch) | |
| tree | 346df193c4fb9c771472050c067a58ac7e04be83 /src/cryptonote_core/cryptonote_core.cpp | |
| parent | 9f93a1b632f0296141b9cd767ebf894f4d482cf5 (diff) | |
| parent | 332d60719a78875206f8231b1a2429335e4361e6 (diff) | |
| download | monzero-core-cb882dfc552e5a0144043cc1a355ea81d908d244.tar.gz monzero-core-cb882dfc552e5a0144043cc1a355ea81d908d244.tar.xz monzero-core-cb882dfc552e5a0144043cc1a355ea81d908d244.zip | |
Merge pull request #6670
332d607 tx_pool: mine stem txes in fake chain mode (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
| -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 0c73a316f..619c5be3e 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -650,7 +650,7 @@ namespace cryptonote r = m_blockchain_storage.init(db.release(), m_nettype, m_offline, regtest ? ®test_test_options : test_options, fixed_difficulty, get_checkpoints); CHECK_AND_ASSERT_MES(r, false, "Failed to initialize blockchain storage"); - r = m_mempool.init(max_txpool_weight); + r = m_mempool.init(max_txpool_weight, m_nettype == FAKECHAIN); CHECK_AND_ASSERT_MES(r, false, "Failed to initialize memory pool"); // now that we have a valid m_blockchain_storage, we can clean out any |
