updated fast-sync checkpoints; updated testnet seed IPs

This commit is contained in:
Some Random Crypto Guy
2024-10-18 13:55:50 +01:00
parent 204c6fc778
commit 59025bb27b
3 changed files with 7 additions and 7 deletions

Binary file not shown.

View File

@@ -6128,7 +6128,7 @@ void Blockchain::cancel()
}
#if defined(PER_BLOCK_CHECKPOINT)
static const char expected_block_hashes_hash[] = "b8639efef99951207b401131ed9f88e37c856a693d237fc6fad349b929aa1059";
static const char expected_block_hashes_hash[] = "b3351bdb7b7a894c746af6196ae4fb5289a342db43cd51dc663b51d0926277d7";
void Blockchain::load_compiled_in_block_hashes(const GetCheckpointsCallback& get_checkpoints)
{
if (get_checkpoints == nullptr || !m_fast_sync)

View File

@@ -705,9 +705,9 @@ namespace nodetool
std::set<std::string> full_addrs;
if (m_nettype == cryptonote::TESTNET)
{
full_addrs.insert("152.42.130.46:29080");
full_addrs.insert("45.55.138.87:29080");
full_addrs.insert("209.97.164.15:29080");
full_addrs.insert("72.5.43.63:29080");
full_addrs.insert("195.85.114.217:29080");
full_addrs.insert("206.188.197.72:29080");
}
else if (m_nettype == cryptonote::STAGENET)
{
@@ -720,9 +720,9 @@ namespace nodetool
}
else
{
full_addrs.insert("152.42.130.46:19080");
full_addrs.insert("45.55.138.87:19080");
full_addrs.insert("209.97.164.15:19080");
full_addrs.insert("193.149.187.26:19080");
full_addrs.insert("67.217.228.15:19080");
full_addrs.insert("216.245.184.4:19080");
}
return full_addrs;
}