This commit is contained in:
Dariusz Depta
2023-10-12 16:15:30 +02:00
parent f79a694bbd
commit 29d10f3af2
2 changed files with 7 additions and 1 deletions

6
t.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
for pkg in $(go list ./... ); do
echo "$pkg"
go test "$pkg"
done

View File

@@ -23,7 +23,7 @@ func TestBuildContractAddressClassic(t *testing.T) {
type Spec struct {
In struct {
CodeId uint64 `json:"codeId"`
InstanceId uint64 `json:"InstanceId"`
InstanceId uint64 `json:"instanceId"`
} `json:"in"`
Out struct {
Address sdk.AccAddress `json:"address"`