aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-17 22:57:38 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-17 22:57:38 +0000
commit27d4e50dfac5ca48104a87eddaa974d8cbffae63 (patch)
tree4af73b570e3a07ee47ee1dc91c9d06897da75f4c
parentcore: print "update needed" hard fork notifications in red (diff)
downloadmonero-27d4e50dfac5ca48104a87eddaa974d8cbffae63.tar.xz
core: check whether an update is needed straight away
-rw-r--r--src/cryptonote_core/cryptonote_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.h b/src/cryptonote_core/cryptonote_core.h
index 3c6f56749..32f0b2ad4 100644
--- a/src/cryptonote_core/cryptonote_core.h
+++ b/src/cryptonote_core/cryptonote_core.h
@@ -198,7 +198,7 @@ namespace cryptonote
std::string m_config_folder;
cryptonote_protocol_stub m_protocol_stub;
epee::math_helper::once_a_time_seconds<60*60*12, false> m_store_blockchain_interval;
- epee::math_helper::once_a_time_seconds<60*60*2, false> m_fork_moaner;
+ epee::math_helper::once_a_time_seconds<60*60*2, true> m_fork_moaner;
epee::math_helper::once_a_time_seconds<60*2, false> m_txpool_auto_relayer; //!< interval for checking re-relaying txpool transactions
friend class tx_validate_inputs;
std::atomic<bool> m_starter_message_showed;