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 f79a694 commit 29d10f3Copy full SHA for 29d10f3
t.sh
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env bash
2
+
3
+for pkg in $(go list ./... ); do
4
+ echo "$pkg"
5
+ go test "$pkg"
6
+done
x/wasm/keeper/addresses_test.go
@@ -23,7 +23,7 @@ func TestBuildContractAddressClassic(t *testing.T) {
23
type Spec struct {
24
In struct {
25
CodeId uint64 `json:"codeId"`
26
- InstanceId uint64 `json:"InstanceId"`
+ InstanceId uint64 `json:"instanceId"`
27
} `json:"in"`
28
Out struct {
29
Address sdk.AccAddress `json:"address"`
0 commit comments