From 31e2e9a30046fe5c2d42f527091ce3b29dbf5243 Mon Sep 17 00:00:00 2001 From: Mihai Parparita Date: Wed, 8 Feb 2023 11:03:06 -0800 Subject: [PATCH] ipn: remove unused NLKeyStateKey constant We stopped writing network lock keys as separate items with #6315, the constant is no longer used. Signed-off-by: Mihai Parparita --- ipn/store.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ipn/store.go b/ipn/store.go index f50f33c1b..33bc391cf 100644 --- a/ipn/store.go +++ b/ipn/store.go @@ -43,10 +43,6 @@ const ( // StateKey "user-1234". ServerModeStartKey = StateKey("server-mode-start-key") - // NLKeyStateKey is the key under which we store the node's - // network-lock node key, in its key.NLPrivate.MarshalText representation. - NLKeyStateKey = StateKey("_nl-node-key") - // KnownProfilesStateKey is the key under which we store the list of // known profiles. The value is a JSON-encoded []LoginProfile. KnownProfilesStateKey = StateKey("_profiles")