Merge pull request #29 from fluffypony/master
New seed nodes & temporary get_line fix
This commit is contained in:
commit
2d755b3d0e
|
@ -257,9 +257,7 @@ namespace epee
|
|||
std::string command;
|
||||
if(!m_stdin_reader.get_line(command))
|
||||
{
|
||||
LOG_PRINT("Failed to read line. Stopping...", LOG_LEVEL_0);
|
||||
continue_handle = false;
|
||||
break;
|
||||
LOG_PRINT("Failed to read line. Ignoring and continuing to run, exiting daemon may require a SIGTERM kill.", LOG_LEVEL_0);
|
||||
}
|
||||
string_tools::trim(command);
|
||||
|
||||
|
|
|
@ -193,6 +193,15 @@ namespace nodetool
|
|||
template<class t_payload_net_handler>
|
||||
bool node_server<t_payload_net_handler>::init(const boost::program_options::variables_map& vm)
|
||||
{
|
||||
ADD_HARDCODED_SEED_NODE("62.210.78.186:18080");
|
||||
ADD_HARDCODED_SEED_NODE("195.12.60.154:18080");
|
||||
ADD_HARDCODED_SEED_NODE("54.241.246.125:18080");
|
||||
ADD_HARDCODED_SEED_NODE("107.170.157.169:18080");
|
||||
ADD_HARDCODED_SEED_NODE("54.207.112.216:18080");
|
||||
ADD_HARDCODED_SEED_NODE("78.27.112.54:18080");
|
||||
ADD_HARDCODED_SEED_NODE("209.222.30.57:18080");
|
||||
ADD_HARDCODED_SEED_NODE("80.71.13.55:18080");
|
||||
ADD_HARDCODED_SEED_NODE("107.178.112.126:18080");
|
||||
ADD_HARDCODED_SEED_NODE("107.158.233.98:18080");
|
||||
ADD_HARDCODED_SEED_NODE("64.22.111.2:18080");
|
||||
|
||||
|
|
Loading…
Reference in New Issue