Skip to content

Commit

Permalink
p2p: add 2 new seed nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
hayzamjs committed Apr 27, 2023
1 parent c0278b4 commit a4fd475
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/p2p/net_node.inl
Original file line number Diff line number Diff line change
Expand Up @@ -603,19 +603,15 @@ namespace nodetool
{
std::set<std::string> full_addrs;
if (nettype == cryptonote::TESTNET)
{
/* Wanna be a testnet node seed? Contact hayzam on discord */
full_addrs.insert("65.21.221.2:22821"); /* Scala's Official Testnet node */
full_addrs.insert("167.235.151.213:22821"); /* Hayzam's Testnet Node */
}
{}
else if (nettype == cryptonote::STAGENET)
{}
else if (nettype == cryptonote::FAKECHAIN)
{}
else
{
full_addrs.insert("135.181.166.155:11811"); /* Scala Official Seed */
full_addrs.insert("51.79.146.20:11811"); /* Remote Four */
full_addrs.insert("65.21.221.2:11811");
full_addrs.insert("65.21.221.3:11811");
}
return full_addrs;
}
Expand Down

0 comments on commit a4fd475

Please sign in to comment.