From 69bf0609741d9b42a9ad8133c6f89209730b9bc4 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 25 Sep 2018 09:43:06 -0400 Subject: [PATCH] correct key --- llarp/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/config.cpp b/llarp/config.cpp index da39c1cb7..6da883b48 100644 --- a/llarp/config.cpp +++ b/llarp/config.cpp @@ -133,7 +133,7 @@ extern "C" f << "# path to store transport private key" << std::endl; 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 << "ident-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;