net_node: add tor / i2p seed nodes

Co-authored-by: Lee Clagett <code@leeclagett.com>
This commit is contained in:
selsta 2020-11-05 18:23:12 +01:00
parent 850edfe419
commit 7a5e11645f
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 14 additions and 2 deletions

View File

@ -781,9 +781,21 @@ namespace nodetool
case epee::net_utils::zone::public_:
return get_dns_seed_nodes();
case epee::net_utils::zone::tor:
return {};
if (m_nettype == cryptonote::MAINNET)
{
return {
"xwvz3ekocr3dkyxfkmgm2hvbpzx2ysqmaxgter7znnqrhoicygkfswid.onion:18083",
"4pixvbejrvihnkxmduo2agsnmc3rrulrqc7s3cbwwrep6h6hrzsibeqd.onion:18083"
};
}
case epee::net_utils::zone::i2p:
return {};
if (m_nettype == cryptonote::MAINNET)
{
return {
"s3l6ke4ed3df466khuebb4poienoingwof7oxtbo6j4n56sghe3a.b32.i2p:18080",
"sel36x6fibfzujwvt4hf5gxolz6kd3jpvbjqg6o3ud2xtionyl2q.b32.i2p:18080"
};
}
default:
break;
}