We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cea8ea commit d7b98a9Copy full SHA for d7b98a9
packages/go-gen/src/main.rs
@@ -355,7 +355,7 @@ mod tests {
355
// wasm
356
compare_codes!(cosmwasm_std::ContractInfoResponse);
357
compare_codes!(cosmwasm_std::CodeInfoResponse);
358
- compare_codes!(cosmwasm_std::RawRangeResponse);
+ // compare_codes!(cosmwasm_std::RawRangeResponse); // uses `[]byte` instead of `*[]byte`
359
}
360
361
#[test]
packages/go-gen/tests/cosmwasm_std__RawRangeResponse.go
@@ -2,7 +2,7 @@ type RawRangeResponse struct {
2
// The key-value pairs
3
Data Array[RawRangeEntry] `json:"data"`
4
// `None` if there are no more key-value pairs within the given key range.
5
- NextKey *[]byte `json:"next_key,omitempty"`
+ NextKey []byte `json:"next_key"`
6
7
type RawRangeEntry struct {
8
K []byte `json:"k"`
0 commit comments