aboutsummaryrefslogtreecommitdiffstats
path: root/core/agreement.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/agreement.go')
-rw-r--r--core/agreement.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/agreement.go b/core/agreement.go
index aa1d1dc..1b995e7 100644
--- a/core/agreement.go
+++ b/core/agreement.go
@@ -19,6 +19,7 @@ package core
import (
"fmt"
+ "math"
"sync"
"sync/atomic"
"time"
@@ -126,7 +127,9 @@ func newAgreement(
candidateBlock: make(map[common.Hash]*types.Block),
authModule: authModule,
}
- agreement.restart(notarySet, types.Position{})
+ agreement.restart(notarySet, types.Position{
+ ChainID: math.MaxUint32,
+ })
return agreement
}