Skip to content

Commit

Permalink
Remove entry timestamp check
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Oct 18, 2020
1 parent 904a511 commit 58c4def
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion disc/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,11 @@ func (e *Entry) Validate() error {

if ts.After(latestAcceptable) || ts.Before(earliestAcceptable) {
log.Warnf("Entry timestamp %v is not correct (now: %v)", ts, now)
return ErrValidationOutdatedTime
// Skybian boards have issues with mismatching time because of https://github.com/skycoin/skybian/issues/47.
// This causes issues like https://github.com/SkycoinPro/skywire-services/issues/274.
// Therefore, the timestamp check needs to be temporarily disabled until the issue is resolved.
//
// return ErrValidationOutdatedTime
}

return nil
Expand Down

0 comments on commit 58c4def

Please sign in to comment.