diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-22 11:19:20 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-22 11:20:44 +0000 |
commit | 5901331669f7508362a1f8bd3603b344b5a8a0db (patch) | |
tree | 6d842f036ccf5a75c6523f3e720d316aab8b1156 /src/cryptonote_core | |
parent | updates: we now have a user URL, and an automatic one (diff) | |
download | monero-5901331669f7508362a1f8bd3603b344b5a8a0db.tar.xz |
updates: remove testnet case
It need not be any different
Diffstat (limited to 'src/cryptonote_core')
-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 470c1feb3..98c53890e 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -1101,7 +1101,7 @@ namespace cryptonote std::string version, hash; MCDEBUG("updates", "Checking for a new " << software << " version for " << buildtag); - if (!tools::check_updates(software, buildtag, m_testnet, version, hash)) + if (!tools::check_updates(software, buildtag, version, hash)) return false; if (tools::vercmp(version.c_str(), MONERO_VERSION) <= 0) |