From 3eef551573e331d581433ead4bea5d21009e0924 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 19 May 2020 12:33:03 +0800 Subject: [PATCH] PasswordTag --- identity.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/identity.go b/identity.go index f5aed9a..47b0100 100644 --- a/identity.go +++ b/identity.go @@ -9,10 +9,10 @@ import ( const IdentityTag = "Identity" const PrivKeyTag = "PrivKey" const MnemonicTag = "Mnemonic" -const Password = "Password" +const PasswordTag = "Password" const PrivKeySelector = IdentityTag + "." + PrivKeyTag const MnemonicSelector = IdentityTag + "." + MnemonicTag -const PasswordSelector = IdentityTag + "." + Password +const PasswordSelector = IdentityTag + "." + PasswordTag // Identity tracks the configuration of the local node's identity. type Identity struct {