Skip to content

Commit 29d10f3

Browse files
committed
Fixes.
1 parent f79a694 commit 29d10f3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

t.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestBuildContractAddressClassic(t *testing.T) {
2323
type Spec struct {
2424
In struct {
2525
CodeId uint64 `json:"codeId"`
26-
InstanceId uint64 `json:"InstanceId"`
26+
InstanceId uint64 `json:"instanceId"`
2727
} `json:"in"`
2828
Out struct {
2929
Address sdk.AccAddress `json:"address"`

0 commit comments

Comments
 (0)