diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-25 19:08:31 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-25 19:08:35 +0100 |
commit | cec090fc8ac204d94c685c3881235b2be4b75ef6 (patch) | |
tree | 7106da0e04df6ee2bb2335d39af2b1c949e6ad87 /src/cryptonote_core | |
parent | Merge pull request #1102 (diff) | |
download | monero-cec090fc8ac204d94c685c3881235b2be4b75ef6.tar.xz |
Revert "Fix fake 'network synchronized, begin using' messages"
This reverts commit 78035d2b6c9922f4cd730df0766aa74f4854ccb2.
The patch doesn't work, and causes constant SYNCHRONIZED OK spam.
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index c289f297b..52a5d48c7 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -965,10 +965,7 @@ namespace cryptonote //----------------------------------------------------------------------------------------------- void core::set_target_blockchain_height(uint64_t target_blockchain_height) { - if (target_blockchain_height > m_target_blockchain_height) - { - m_target_blockchain_height = target_blockchain_height; - } + m_target_blockchain_height = target_blockchain_height; } //----------------------------------------------------------------------------------------------- uint64_t core::get_target_blockchain_height() const |