Compare commits

...

5 Commits

Author SHA1 Message Date
Jason Rhinelander a27d9b69bb
Merge pull request #1628 from jagerman/seed-node-updates
Seed nodes updates
2023-03-24 13:34:12 +11:00
Jason Rhinelander c0baec63f6
Merge pull request #1634 from darcys22/up-decoys
up decoys in stub
2023-03-24 13:31:54 +11:00
Sean Darcy 53388ee8a1 up decoys in stub 2023-02-23 08:49:46 +11:00
Jason Rhinelander 3a2ddb0ccd
Replace defunct OVH servers with another OPTF server 2023-01-31 20:25:53 -04:00
Jason Rhinelander 97b6fa5cba
Updated my personal server IP as it has moved 2023-01-31 13:24:53 -04:00
2 changed files with 4 additions and 5 deletions

View File

@ -578,7 +578,7 @@ namespace nodetool
std::set<std::string> full_addrs;
if (nettype == cryptonote::network_type::TESTNET)
{
full_addrs.insert("144.76.164.202:38156"); // public.loki.foundation
full_addrs.insert("144.76.164.202:38156"); // public-eu.optf.ngo
}
else if (nettype == cryptonote::network_type::DEVNET)
{
@ -590,11 +590,10 @@ namespace nodetool
else
{
full_addrs.insert("116.203.196.12:22022"); // Hetzner seed node
full_addrs.insert("149.56.165.115:22022"); // Jason's seed node
full_addrs.insert("185.150.191.32:22022"); // Jason's seed node
full_addrs.insert("199.127.60.6:22022"); // Oxen Foundation server "holstein"
full_addrs.insert("23.88.6.250:22022"); // Official Session open group server
full_addrs.insert("144.217.243.15:22022"); // OVH(1)
full_addrs.insert("51.38.133.145:22022"); // OVH(2)
full_addrs.insert("104.194.8.115:22000"); // Oxen Foundation server "brahman"
}
return full_addrs;
}

View File

@ -26,7 +26,7 @@ namespace wallet
// TODO sean this should actually be kept track of somewhere in the schema. not just max of *our* outputs
//int64_t max_output_index = db->prepared_get<int>("SELECT max(global_index) FROM outputs;");
int64_t max_output_index = 100;
int64_t max_output_index = 1000;
decoy_selector = std::make_unique<DecoySelector>(0, max_output_index);
};