Skip to content

Commit b0dbb18

Browse files
authored
Merge pull request #1482 from 0chain/hotfix/share-time
increase time gap for share
2 parents 25e8f11 + 86a2927 commit b0dbb18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/go/0chain.net/blobbercore/readmarker/authticket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (authToken *AuthTicket) Verify(allocationObj *allocation.Allocation, client
6767
if authToken.OwnerID != allocationObj.OwnerID {
6868
return common.NewError("invalid_parameters", "Invalid auth ticket. Owner ID mismatch")
6969
}
70-
if authToken.Timestamp > (common.Now() + 2) {
70+
if authToken.Timestamp > (common.Now() + 120) {
7171
return common.NewError("invalid_parameters", "Invalid auth ticket. Timestamp in future")
7272
}
7373

0 commit comments

Comments
 (0)