Skip to content

Commit

Permalink
increase time gap for share
Browse files Browse the repository at this point in the history
  • Loading branch information
Hitenjain14 committed Oct 23, 2024
1 parent 3dc0b63 commit 86a2927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/go/0chain.net/blobbercore/readmarker/authticket.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (authToken *AuthTicket) Verify(allocationObj *allocation.Allocation, client
if authToken.OwnerID != allocationObj.OwnerID {
return common.NewError("invalid_parameters", "Invalid auth ticket. Owner ID mismatch")
}
if authToken.Timestamp > (common.Now() + 2) {
if authToken.Timestamp > (common.Now() + 120) {
return common.NewError("invalid_parameters", "Invalid auth ticket. Timestamp in future")
}

Expand Down

0 comments on commit 86a2927

Please sign in to comment.