net_node: add tor / i2p seed nodes

Co-authored-by: Lee Clagett <code@leeclagett.com>
pull/377/head
selsta 4 years ago
parent 850edfe419
commit 7a5e11645f
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -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;
}

Loading…
Cancel
Save