From 0c7b6afc4fb46d6d4c28ccb5ca02ec7e54eb8e49 Mon Sep 17 00:00:00 2001 From: caojingqi Date: Mon, 26 Aug 2019 10:58:32 +0800 Subject: [PATCH] modify nodekey --- p2p/key.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/key.go b/p2p/key.go index 105822bf29c..0209057d71f 100644 --- a/p2p/key.go +++ b/p2p/key.go @@ -31,7 +31,7 @@ type NodeKey struct { PrivKey crypto.PrivKey `json:"priv_key"` // our priv key RSAPrivKey string `json:"rsa_priv_key"` RSAPubkKey string `json:"rsa_pub_key"` - OrgKeys map[string]map[string]string `json:"org_keys"` + GroupKeys map[string]map[string]string `json:"group_keys"` } // ID returns the peer's canonical ID - the hash of its public key.