diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-15 09:12:14 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-15 09:13:24 +0800 |
commit | 09e53367a24025564686af42c8349d2bd05729c3 (patch) | |
tree | 13895b4f838afe5c04d87149cc79d54006f2e32b /p2p | |
parent | b143dad596f4230d74dadd3c5060020bd50ef7f3 (diff) | |
download | dexon-09e53367a24025564686af42c8349d2bd05729c3.tar.gz dexon-09e53367a24025564686af42c8349d2bd05729c3.tar.zst dexon-09e53367a24025564686af42c8349d2bd05729c3.zip |
Use a mutex write-lock for a write operation
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/server.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/p2p/server.go b/p2p/server.go index e510be521..35b584a27 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -436,15 +436,15 @@ func (self *BlacklistMap) Exists(pubkey []byte) (ok bool) { } func (self *BlacklistMap) Put(pubkey []byte) error { - self.lock.RLock() - defer self.lock.RUnlock() + self.lock.Lock() + defer self.lock.Unlock() self.blacklist[string(pubkey)] = true return nil } func (self *BlacklistMap) Delete(pubkey []byte) error { - self.lock.RLock() - defer self.lock.RUnlock() + self.lock.Lock() + defer self.lock.Unlock() delete(self.blacklist, string(pubkey)) return nil } |