aboutsummaryrefslogtreecommitdiff
path: root/src/common/updates.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-02-22 13:36:57 +0200
committerRiccardo Spagni <ric@spagni.net>2017-02-22 13:36:57 +0200
commit7de43154d3995ae9bd024012825e87feec9c7606 (patch)
tree6d842f036ccf5a75c6523f3e720d316aab8b1156 /src/common/updates.h
parentMerge pull request #1773 (diff)
parentupdates: remove testnet case (diff)
downloadmonero-7de43154d3995ae9bd024012825e87feec9c7606.tar.xz
Merge pull request #1774
59013316 updates: remove testnet case (moneromooo-monero) 822577eb updates: we now have a user URL, and an automatic one (moneromooo-monero) 9f17b1a3 updates: s/monerod/monero/ for the main download (moneromooo-monero) 6a5dfb88 updates: add all update servers (moneromooo-monero) 72d40f13 updates: use HTTP, not HTTPS (moneromooo-monero)
Diffstat (limited to 'src/common/updates.h')
-rw-r--r--src/common/updates.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/updates.h b/src/common/updates.h
index 1a70e06fd..e494ed7ac 100644
--- a/src/common/updates.h
+++ b/src/common/updates.h
@@ -32,6 +32,6 @@
namespace tools
{
- bool check_updates(const std::string &software, const std::string &buildtag, bool bestnet, std::string &version, std::string &hash);
- std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version);
+ bool check_updates(const std::string &software, const std::string &buildtag, std::string &version, std::string &hash);
+ std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version, bool user);
}