aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-07-08 21:59:19 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-07-08 21:59:19 +0800
commitf5a29eab5ce6ada8fef2378b96384cc81586b6ce (patch)
tree5fbbe57cac1cdd0b5db0dbb9c8eae37d15145d63 /core/blockchain.go
parent2b94d7fc7fa93ecfd5ab6ddaa0c7bf4d2224d2be (diff)
downloadgo-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar.gz
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar.bz2
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar.lz
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar.xz
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.tar.zst
go-tangerine-f5a29eab5ce6ada8fef2378b96384cc81586b6ce.zip
core: solve a remote-import/local-mine data race
Diffstat (limited to 'core/blockchain.go')
-rw-r--r--core/blockchain.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 95bada5ee..950804d40 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -771,14 +771,13 @@ func (self *BlockChain) WriteBlock(block *types.Block) (status WriteStatus, err
if ptd == nil {
return NonStatTy, ParentError(block.ParentHash())
}
-
- localTd := self.GetTd(self.currentBlock.Hash(), self.currentBlock.NumberU64())
- externTd := new(big.Int).Add(block.Difficulty(), ptd)
-
// Make sure no inconsistent state is leaked during insertion
self.mu.Lock()
defer self.mu.Unlock()
+ localTd := self.GetTd(self.currentBlock.Hash(), self.currentBlock.NumberU64())
+ externTd := new(big.Int).Add(block.Difficulty(), ptd)
+
// If the total difficulty is higher than our known, add it to the canonical chain
// Second clause in the if statement reduces the vulnerability to selfish mining.
// Please refer to http://www.cs.cornell.edu/~ie53/publications/btcProcFC.pdf