aboutsummaryrefslogtreecommitdiff
path: root/src/common/updates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/updates.cpp')
-rw-r--r--src/common/updates.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/updates.cpp b/src/common/updates.cpp
index 2a129075b..b68be39b6 100644
--- a/src/common/updates.cpp
+++ b/src/common/updates.cpp
@@ -39,6 +39,15 @@ namespace tools
{
bool check_updates(const std::string &software, const std::string &buildtag, std::string &version, std::string &hash)
{
+ // Do not trust or advertise Monero release records for Monzero binaries.
+ // Re-enable only after project-controlled, signed update infrastructure
+ // has been reviewed and deployed.
+ (void)software;
+ (void)buildtag;
+ (void)version;
+ (void)hash;
+ return false;
+#if 0
std::vector<std::string> records;
bool found = false;
@@ -98,6 +107,7 @@ namespace tools
found = true;
}
return found;
+#endif
}
std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version, bool user)