fixed display coin name, added default seeds

This commit is contained in:
Matt Hess
2025-11-13 07:02:48 +00:00
parent 63f69dac0d
commit 8e17597227
2 changed files with 4 additions and 4 deletions

View File

@@ -48,9 +48,9 @@ LOG_CATEGORY(P2PServer)
static constexpr char saved_peer_list_file_name[] = "p2pool_peers.txt";
static constexpr char saved_onion_peer_list_file_name[] = "p2pool_onion_peers.txt";
static const char* seed_nodes[] = { "p2pool-seed01.whiskymine.io" };
static const char* seed_nodes_mini[] = { "" };
static const char* seed_nodes_nano[] = { "" };
static const char* seed_nodes[] = { "seed01.whiskymine.io", "seed02.whiskymine.io" };
static const char* seed_nodes_mini[] = { "seed01.whiskymine.io", "seed02.whiskymine.io" };
static const char* seed_nodes_nano[] = { "seed01.whiskymine.io", "seed02.whiskymine.io" };
static constexpr int DEFAULT_BACKLOG = 16;
static constexpr uint64_t DEFAULT_BAN_TIME = 600;

View File

@@ -1072,7 +1072,7 @@ void SideChain::print_status(bool obtain_sidechain_lock) const
}
LOGINFO(0, "status" <<
"\nMonero node = " << m_pool->current_host().m_displayName <<
"\nSalvium node = " << m_pool->current_host().m_displayName <<
"\nMain chain height = " << m_pool->block_template().height() <<
"\nMain chain hashrate = " << log::Hashrate(network_hashrate) <<
"\nSide chain ID = " << (is_default() ? "default" : (is_mini() ? "mini" : (is_nano() ? "nano" : m_consensusIdDisplayStr.c_str()))) <<