Add default seed nodes

This commit is contained in:
Duke Leto
2021-07-11 19:11:29 -04:00
parent 23369152d3
commit 13e16cc2ef

View File

@@ -1804,6 +1804,10 @@ void hush_args(char *argv0)
} }
} }
} }
vector<string> HUSH_nodes= {"node1.hush.is","node2.hush.is","node3.hush.is",
"node4.hush.is","node5.hush.is","node6.hush.is",
"node7.hush.is","node8.hush.is"};
mapMultiArgs["-addnode"] = HUSH_nodes;
HUSH_STOPAT = GetArg("-stopat",0); HUSH_STOPAT = GetArg("-stopat",0);
MAX_REORG_LENGTH = GetArg("-maxreorg",MAX_REORG_LENGTH); MAX_REORG_LENGTH = GetArg("-maxreorg",MAX_REORG_LENGTH);
WITNESS_CACHE_SIZE = MAX_REORG_LENGTH+10; WITNESS_CACHE_SIZE = MAX_REORG_LENGTH+10;