Skip to content
Snippets Groups Projects
Commit 10af6992 authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fixed uninstantiated error

parent f14f3602
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,7 @@ func (s *Store) Add(nid *id.ID, k *cyclic.Int) { ...@@ -104,7 +104,7 @@ func (s *Store) Add(nid *id.ID, k *cyclic.Int) {
s.nodes[*nid] = nodekey s.nodes[*nid] = nodekey
if err = s.save(); err != nil { if err := s.save(); err != nil {
jww.FATAL.Panicf("Failed to save nodeKey list for %s: %s", nid, err) jww.FATAL.Panicf("Failed to save nodeKey list for %s: %s", nid, err)
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment