Skip to content

Commit

Permalink
Merge pull request #25 from nkryuchkov/fix/remove-entry-ts-check
Browse files Browse the repository at this point in the history
Remove entry timestamp check
  • Loading branch information
jdknives authored Oct 18, 2020
2 parents 904a511 + 58c4def commit a08c07b
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 a08c07b

Please sign in to comment.