aboutsummaryrefslogtreecommitdiffstats
path: root/integration_test
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-10-17 19:06:40 +0800
committerGitHub <noreply@github.com>2018-10-17 19:06:40 +0800
commit29f38589a29e434282a783433d9fbb565ce4231b (patch)
treede7c6ffb73580689fc066e98221c45ef0b0694a4 /integration_test
parent21ab1ac7be6e88b88f75b10eb83d409bc0322254 (diff)
downloaddexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar.gz
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar.bz2
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar.lz
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar.xz
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.tar.zst
dexon-consensus-29f38589a29e434282a783433d9fbb565ce4231b.zip
core: Some sync functions (#220)
Diffstat (limited to 'integration_test')
-rw-r--r--integration_test/node.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test/node.go b/integration_test/node.go
index cf8be8c..09d1557 100644
--- a/integration_test/node.go
+++ b/integration_test/node.go
@@ -187,7 +187,7 @@ func (n *Node) processBlock(b *types.Block) (err error) {
verified []*types.Block
pendings = []*types.Block{b}
)
- if err = n.lattice.SanityCheck(b); err != nil {
+ if err = n.lattice.SanityCheck(b, true); err != nil {
if err == core.ErrAckingBlockNotExists {
err = nil
}