Skip to content

Commit

Permalink
Merge pull request monero-project#23 from nahuhh/stressnet
Browse files Browse the repository at this point in the history
p2p: stressnet tor & i2p seed nodes
  • Loading branch information
0xFFFC0000 committed Aug 7, 2024
2 parents 367facb + f7f1f0c commit ff948ed
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/p2p/net_node.inl
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,12 @@ namespace nodetool
"aclc4e2jhhtr44guufbnwk5bzwhaecinax4yip4wr4tjn27sjsfg6zqd.onion:18083",
};
}
else if (m_nettype == cryptonote::TESTNET)
{
return {
"stressgguj7ugyxtqe7czeoelobeb3cnyhltooueuae2t3avd5ynepid.onion:28084",
};
}
return {};
case epee::net_utils::zone::i2p:
if (m_nettype == cryptonote::MAINNET)
Expand All @@ -878,6 +884,12 @@ namespace nodetool
"ugnlcdciyhghh2zert7c3kl4biwkirc43ke33jiy5slnd3mv2trq.b32.i2p",
};
}
else if (m_nettype == cryptonote::TESTNET)
{
return {
"stressg4wxpntle5i2mf5emu453vzdhpq22bonukbmc4nntn5bxq.b32.i2p",
};
}
return {};
default:
break;
Expand Down

0 comments on commit ff948ed

Please sign in to comment.