diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-11-29 01:59:35 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-11-29 01:59:35 -0600 |
| commit | 850edfe4199458314346e2910550b33663310f42 (patch) | |
| tree | d9564d80380776e03621fc42d10243ae7314a99e /src/cryptonote_core/cryptonote_core.cpp | |
| parent | cf816e51ad0137f02d5c6e1b629c0104535a81f9 (diff) | |
| parent | d73cb95dfa5d6a5a70764fe53df46568af52bfbb (diff) | |
| download | monzero-core-850edfe4199458314346e2910550b33663310f42.tar.gz monzero-core-850edfe4199458314346e2910550b33663310f42.tar.xz monzero-core-850edfe4199458314346e2910550b33663310f42.zip | |
Merge pull request #7021
d73cb95 Fix timeout checks for forwarded and Dandelion++ stem txes (Lee Clagett)
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 694f2cc34..42b1c6c84 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -1730,7 +1730,7 @@ namespace cryptonote m_starter_message_showed = true; } - m_txpool_auto_relayer.do_call(boost::bind(&core::relay_txpool_transactions, this)); + relay_txpool_transactions(); // txpool handles periodic DB checking m_check_updates_interval.do_call(boost::bind(&core::check_updates, this)); m_check_disk_space_interval.do_call(boost::bind(&core::check_disk_space, this)); m_block_rate_interval.do_call(boost::bind(&core::check_block_rate, this)); |
