From 179d18bad4519a4be6b531b7d502b20a3f10d737 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 25 Sep 2018 09:38:10 -0400 Subject: [PATCH] use correct value --- llarp/config.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llarp/config.cpp b/llarp/config.cpp index 120ef7106..da39c1cb7 100644 --- a/llarp/config.cpp +++ b/llarp/config.cpp @@ -134,6 +134,8 @@ extern "C" f << "transport-privkey=" << basepath << "transport.private" << std::endl; f << "# path to store identity signing key" << std::endl; f << "identity-privkey=" << basepath << "identity.private" << std::endl; + f << "# encryption key for onion routing" << std::endl; + f << "encryption-privkey=" << basepath << "encryption.private" << std::endl; f << std::endl; f << "# uncomment following line to set router nickname to 'lokinet'" << std::endl;