aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-16 17:26:50 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commitc2d461f4c5cefde85173365175d2de8bf234b4aa (patch)
treecd7a3cc61f6befa7359d18f2e6b024452b3c267d /core/blockchain.go
parentdcdb39cb09464422b1ab13a0b92f95e5378431b6 (diff)
downloaddexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar.gz
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar.bz2
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar.lz
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar.xz
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.tar.zst
dexon-c2d461f4c5cefde85173365175d2de8bf234b4aa.zip
core: fix light node synchronization issue (#30)
InsertChain() need to record the correct roundHeight mapping in order to process snapshotRoundHeight() governance method correctly.
Diffstat (limited to 'core/blockchain.go')
-rw-r--r--core/blockchain.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index f13553d12..5a75afaf2 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1379,6 +1379,7 @@ func (bc *BlockChain) insertChain(chain types.Blocks, verifySeals bool) (int, []
"txs", len(block.Transactions()), "gas", block.GasUsed(), "uncles", len(block.Uncles()),
"root", block.Root())
events = append(events, ChainSideEvent{block})
+ panic("fork found")
}
blockInsertTimer.UpdateSince(start)
stats.processed++