diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-02-18 10:01:37 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-02-18 10:01:37 +0200 |
| commit | 1889c0e81c2fa436e201a4d98bbb57f1e6a738ca (patch) | |
| tree | a063ab208696c1bd138c46293dc606ab3bffad1c /src/cryptonote_core/cryptonote_core.cpp | |
| parent | 43fe8c4933e1ff3542ae936841fabffe3aafc4dc (diff) | |
| parent | 27d4e50dfac5ca48104a87eddaa974d8cbffae63 (diff) | |
| download | monzero-core-1889c0e81c2fa436e201a4d98bbb57f1e6a738ca.tar.gz monzero-core-1889c0e81c2fa436e201a4d98bbb57f1e6a738ca.tar.xz monzero-core-1889c0e81c2fa436e201a4d98bbb57f1e6a738ca.zip | |
Merge pull request #675
27d4e50 core: check whether an update is needed straight away (moneromooo-monero)
8892173 core: print "update needed" hard fork notifications in red (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
| -rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 2c485d791..6f0fe88a4 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -943,14 +943,14 @@ namespace cryptonote HardFork::State state = m_blockchain_storage.get_hard_fork_state(); switch (state) { case HardFork::LikelyForked: - LOG_PRINT_L0(ENDL + LOG_PRINT_RED_L0(ENDL << "**********************************************************************" << ENDL << "Last scheduled hard fork is too far in the past." << ENDL << "We are most likely forked from the network. Daemon update needed now." << ENDL << "**********************************************************************" << ENDL); break; case HardFork::UpdateNeeded: - LOG_PRINT_L0(ENDL + LOG_PRINT_RED_L0(ENDL << "**********************************************************************" << ENDL << "Last scheduled hard fork time shows a daemon update is needed now." << ENDL << "**********************************************************************" << ENDL); |
