Skip to content

Commit

Permalink
temporary fix (#1282)
Browse files Browse the repository at this point in the history
  • Loading branch information
capossele authored May 11, 2021
1 parent e7d5df3 commit 7d927f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/markers/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ func (m *Manager) fetchSequence(referencedMarkers *Markers, pastMarkerGap, rank
return
}
sequence.increaseVerticesWithoutFutureMarker()
if !sequence.newSequenceRequired(pastMarkerGap) {
if true || !sequence.newSequenceRequired(pastMarkerGap) {
return
}

Expand Down
2 changes: 1 addition & 1 deletion plugins/messagelayer/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var Parameters = struct {
}

// TangleTimeWindow defines the time window in which the node considers itself as synced according to TangleTime.
TangleTimeWindow time.Duration `default:"1m" usage:"the time window in which the node considers itself as synced according to TangleTime"`
TangleTimeWindow time.Duration `default:"2m" usage:"the time window in which the node considers itself as synced according to TangleTime"`

// StartSynced defines if the node should start as synced.
StartSynced bool `default:"false" usage:"start as synced"`
Expand Down

0 comments on commit 7d927f3

Please sign in to comment.