add slot for bootstrap node in config autogeneration

This commit is contained in:
Jeff Becker 2018-09-25 08:11:10 -04:00
parent b273676a63
commit 59cdc160cd
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -170,6 +170,12 @@ extern "C"
f << "# directory for network database skiplist storage" << std::endl; f << "# directory for network database skiplist storage" << std::endl;
f << "dir=" << basepath << "netdb" << std::endl; f << "dir=" << basepath << "netdb" << std::endl;
f << std::endl << std::endl; f << std::endl << std::endl;
f << "# bootstrap settings " << std::endl;
f << "[connect]" << std::endl;
f << "bootstrap=" << basepath << "bootstrap.signed" << std::endl;
f << std::endl << std::endl;
f << "# publish network interfaces for handling inbound traffic" f << "# publish network interfaces for handling inbound traffic"
<< std::endl; << std::endl;
f << "[bind]" << std::endl; f << "[bind]" << std::endl;