aboutsummaryrefslogtreecommitdiffstats
path: root/integration_test/node.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-01-15 16:06:21 +0800
committerGitHub <noreply@github.com>2019-01-15 16:06:21 +0800
commit8e1b6161f346993b74558124758cfb650465cf05 (patch)
treec5b60eae90c3358e6faf43cee9d3ffc3b9945dd1 /integration_test/node.go
parent809e8def862fdfa792061a448f952747f1af4d3c (diff)
downloadtangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar.gz
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar.bz2
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar.lz
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar.xz
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.tar.zst
tangerine-consensus-8e1b6161f346993b74558124758cfb650465cf05.zip
core: Fix BA3.0 (#420)
* Add Restart to Ticker * Change pre allocated size * Return NextTime from lattice * Few hacky fixes for BA * PullVote in FastRollback state * Add shallowBlock for agreementResult * Extend period * Fixup
Diffstat (limited to 'integration_test/node.go')
-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 2d0ca9f..c2bb806 100644
--- a/integration_test/node.go
+++ b/integration_test/node.go
@@ -228,7 +228,7 @@ func (n *Node) processBlock(b *types.Block) (events []*test.Event, err error) {
)
updated := false
for _, p := range n.pendings {
- if tmpErr = n.lattice.SanityCheck(p); tmpErr != nil {
+ if tmpErr = n.lattice.SanityCheck(p, false); tmpErr != nil {
if tmpErr == core.ErrRetrySanityCheckLater {
newPendings = append(newPendings, p)
} else {