disabled Trezor until protobuf fixes are available; disabled moneropulse issues; bumped version number

This commit is contained in:
Some Random Crypto Guy
2024-08-16 20:47:03 +01:00
parent 0ee3c669d6
commit 6d8e925fdb
6 changed files with 14 additions and 14 deletions
+6 -6
View File
@@ -249,22 +249,22 @@ namespace cryptonote
std::vector<std::string> records;
// All four MoneroPulse domains have DNSSEC on and valid
static const std::vector<std::string> dns_urls = { "checkpoints.moneropulse.se"
static const std::vector<std::string> dns_urls = { /*"checkpoints.moneropulse.se"
, "checkpoints.moneropulse.org"
, "checkpoints.moneropulse.net"
, "checkpoints.moneropulse.co"
, "checkpoints.moneropulse.co"*/
};
static const std::vector<std::string> testnet_dns_urls = { "testpoints.moneropulse.se"
static const std::vector<std::string> testnet_dns_urls = { /*"testpoints.moneropulse.se"
, "testpoints.moneropulse.org"
, "testpoints.moneropulse.net"
, "testpoints.moneropulse.co"
, "testpoints.moneropulse.co"*/
};
static const std::vector<std::string> stagenet_dns_urls = { "stagenetpoints.moneropulse.se"
static const std::vector<std::string> stagenet_dns_urls = { /*"stagenetpoints.moneropulse.se"
, "stagenetpoints.moneropulse.org"
, "stagenetpoints.moneropulse.net"
, "stagenetpoints.moneropulse.co"
, "stagenetpoints.moneropulse.co"*/
};
if (!tools::dns_utils::load_txt_records_from_dns(records, nettype == TESTNET ? testnet_dns_urls : nettype == STAGENET ? stagenet_dns_urls : dns_urls))