aboutsummaryrefslogtreecommitdiffstats
path: root/keypair.go
diff options
context:
space:
mode:
Diffstat (limited to 'keypair.go')
-rw-r--r--keypair.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/keypair.go b/keypair.go
index bc8da0b..5530d6a 100644
--- a/keypair.go
+++ b/keypair.go
@@ -31,15 +31,15 @@ type Keypair struct {
}
type Keypairs struct {
- mutex sync.RWMutex
+ sync.RWMutex
current *Keypair
previous *Keypair
next *Keypair
}
func (kp *Keypairs) Current() *Keypair {
- kp.mutex.RLock()
- defer kp.mutex.RUnlock()
+ kp.RLock()
+ defer kp.RUnlock()
return kp.current
}