You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/go-gen/tests/cosmwasm_std__WasmQuery.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ type RawRangeQuery struct {
26
26
// The address of the contract to query
27
27
ContractAddrstring`json:"contract_addr"`
28
28
// Exclusive end bound. This is the key after the last key you would like to get data for.
29
-
End*[]byte`json:"end,omitempty"`
29
+
End []byte`json:"end,omitempty"`
30
30
// Maximum number of elements to return.
31
31
//
32
32
// Make sure to set a reasonable limit to avoid running out of memory or into the deserialization limits of the VM. Also keep in mind that these limitations depend on the full JSON size of the response type.
@@ -36,7 +36,7 @@ type RawRangeQuery struct {
36
36
// Inclusive start bound. This is the first key you would like to get data for.
37
37
//
38
38
// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
0 commit comments