Skip to content

Commit

Permalink
Gateway: Allow bigger offset
Browse files Browse the repository at this point in the history
  • Loading branch information
janekolszak committed Feb 28, 2024
1 parent da70278 commit 77c18d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gateway/request/get-interactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ type GetInteractions struct {
Start uint `json:"start" binding:"ltefield=End"`
End uint `json:"end" binding:"gtfield=Start"`
Limit int `json:"limit" binding:"min=0,max=100000"`
Offset int `json:"offset" binding:"min=0,max=1000"`
Offset int `json:"offset" binding:"min=0,max=1000000000"`
BlacklistedContracts []string `json:"blacklisted_contracts" binding:"min=0,max=100,dive,min=1,max=64"`
}

0 comments on commit 77c18d2

Please sign in to comment.