diff options
Diffstat (limited to 'identity/bare.go')
-rw-r--r-- | identity/bare.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/identity/bare.go b/identity/bare.go index 26ecdf03..a02ec790 100644 --- a/identity/bare.go +++ b/identity/bare.go @@ -112,13 +112,13 @@ func (i *Bare) AvatarUrl() string { } // Keys return the last version of the valid keys -func (i *Bare) Keys() []Key { - return []Key{} +func (i *Bare) Keys() []*Key { + return nil } // ValidKeysAtTime return the set of keys valid at a given lamport time -func (i *Bare) ValidKeysAtTime(time lamport.Time) []Key { - return []Key{} +func (i *Bare) ValidKeysAtTime(_ lamport.Time) []*Key { + return nil } // DisplayName return a non-empty string to display, representing the |