Browse Source

Merge pull request #1044 from obscuren/thread_safe_block_cache

core: block cache Has method thread safe
Jeffrey Wilcke 10 years ago
parent
commit
79042223dc
1 changed files with 3 additions and 0 deletions
  1. 3 0
      core/block_cache.go

+ 3 - 0
core/block_cache.go

@@ -85,6 +85,9 @@ func (bc *BlockCache) Get(hash common.Hash) *types.Block {
 }
 
 func (bc *BlockCache) Has(hash common.Hash) bool {
+	bc.mu.RLock()
+	defer bc.mu.RUnlock()
+
 	_, ok := bc.blocks[hash]
 	return ok
 }