aboutsummaryrefslogtreecommitdiffstats
path: root/core/chain_manager.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-29 00:18:23 +0800
committerobscuren <geffobscura@gmail.com>2015-05-29 00:18:23 +0800
commit12b90600eb96c86ba1b5b80478be437d02b70891 (patch)
treeee77ef0d6d1dd5f00f877776c65bad969389fbad /core/chain_manager.go
parent2587b0ea6297871b20375fa8f2602ccd49fce80d (diff)
downloaddexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar.gz
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar.bz2
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar.lz
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar.xz
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.tar.zst
dexon-12b90600eb96c86ba1b5b80478be437d02b70891.zip
core: moved guards
Diffstat (limited to 'core/chain_manager.go')
-rw-r--r--core/chain_manager.go17
1 files changed, 8 insertions, 9 deletions
diff --git a/core/chain_manager.go b/core/chain_manager.go
index 86e90a815..3e8ef6fd8 100644
--- a/core/chain_manager.go
+++ b/core/chain_manager.go
@@ -680,21 +680,20 @@ func (self *ChainManager) diff(oldBlock, newBlock *types.Block) (types.Blocks, e
// first reduce whoever is higher bound
if oldBlock.NumberU64() > newBlock.NumberU64() {
// reduce old chain
- for oldBlock = oldBlock; oldBlock.NumberU64() != newBlock.NumberU64(); oldBlock = self.GetBlock(oldBlock.ParentHash()) {
- if oldBlock == nil {
- return nil, fmt.Errorf("Invalid old chain")
- }
+ for oldBlock = oldBlock; oldBlock != nil && oldBlock.NumberU64() != newBlock.NumberU64(); oldBlock = self.GetBlock(oldBlock.ParentHash()) {
}
} else {
// reduce new chain and append new chain blocks for inserting later on
- for newBlock = newBlock; newBlock.NumberU64() != oldBlock.NumberU64(); newBlock = self.GetBlock(newBlock.ParentHash()) {
- if newBlock == nil {
- return nil, fmt.Errorf("Invalid new chain")
- }
-
+ for newBlock = newBlock; newBlock != nil && newBlock.NumberU64() != oldBlock.NumberU64(); newBlock = self.GetBlock(newBlock.ParentHash()) {
newChain = append(newChain, newBlock)
}
}
+ if oldBlock == nil {
+ return nil, fmt.Errorf("Invalid old chain")
+ }
+ if newBlock == nil {
+ return nil, fmt.Errorf("Invalid new chain")
+ }
numSplit := newBlock.Number()
for {