File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ mod tests {
355
355
// wasm
356
356
compare_codes ! ( cosmwasm_std:: ContractInfoResponse ) ;
357
357
compare_codes ! ( cosmwasm_std:: CodeInfoResponse ) ;
358
- compare_codes ! ( cosmwasm_std:: RawRangeResponse ) ;
358
+ // compare_codes!(cosmwasm_std::RawRangeResponse); // uses `[]byte` instead of `*[]byte`
359
359
}
360
360
361
361
#[ test]
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ type RawRangeResponse struct {
2
2
// The key-value pairs
3
3
Data Array [RawRangeEntry ] `json:"data"`
4
4
// `None` if there are no more key-value pairs within the given key range.
5
- NextKey * []byte `json:"next_key,omitempty "`
5
+ NextKey []byte `json:"next_key"`
6
6
}
7
7
type RawRangeEntry struct {
8
8
K []byte `json:"k"`
You can’t perform that action at this time.
0 commit comments