We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f2dfb commit bb52cfaCopy full SHA for bb52cfa
block/internal/syncing/syncer.go
@@ -267,7 +267,7 @@ func (s *Syncer) initializeState() error {
267
AppHash: stateRoot,
268
}
269
270
- if state.DAHeight < s.genesis.DAStartHeight {
+ if state.DAHeight != 0 && state.DAHeight < s.genesis.DAStartHeight {
271
return fmt.Errorf("DA height (%d) is lower than DA start height (%d)", state.DAHeight, s.genesis.DAStartHeight)
272
273
s.SetLastState(state)
0 commit comments