aboutsummaryrefslogtreecommitdiff
path: root/src/common/updates.cpp
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:14:26 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:14:26 +0100
commit28f1919249465d3230f45ed21686c5a836d56df0 (patch)
tree948fe5e7052c45c366c24a82b485ae9d1d38e39b /src/common/updates.cpp
parent4f92268d7c16741cfb41e5bbe2aa46cc260a9ea5 (diff)
downloadmonzero-core-28f1919249465d3230f45ed21686c5a836d56df0.tar.gz
monzero-core-28f1919249465d3230f45ed21686c5a836d56df0.tar.xz
monzero-core-28f1919249465d3230f45ed21686c5a836d56df0.zip
Establish Monzero Phase 0 and inactive assets baselinemonzero-phase0-assets-prototype-20260815
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)