Skip to content

Commit 7a03115

Browse files
committed
fix gov test build
1 parent a3d8ef7 commit 7a03115

File tree

12 files changed

+1259
-1663
lines changed

12 files changed

+1259
-1663
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ require (
4646
github.com/tidwall/gjson v1.18.0
4747
github.com/tidwall/sjson v1.2.5
4848
github.com/tyler-smith/go-bip39 v1.1.0
49-
github.com/yihuang/go-abi v0.0.0-20251102055609-65d4c0e4a9a3
49+
github.com/yihuang/go-abi v0.0.0-20251102072520-0bf4a40d5737
5050
github.com/zondax/hid v0.9.2
5151
go.uber.org/mock v0.6.0
5252
golang.org/x/crypto v0.43.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,8 @@ github.com/yihuang/go-abi v0.0.0-20251102053536-bfae8459a462 h1:fV3AwhlBbTRXnKgW
965965
github.com/yihuang/go-abi v0.0.0-20251102053536-bfae8459a462/go.mod h1:btymTlqoiLCR8Gj5bppalyNPSzQYUfK6YROYsihjGS4=
966966
github.com/yihuang/go-abi v0.0.0-20251102055609-65d4c0e4a9a3 h1:c5wyg8V4tnG/E1kITkvnWIkv7Vk3LyPbcxXD2K0JkKs=
967967
github.com/yihuang/go-abi v0.0.0-20251102055609-65d4c0e4a9a3/go.mod h1:btymTlqoiLCR8Gj5bppalyNPSzQYUfK6YROYsihjGS4=
968+
github.com/yihuang/go-abi v0.0.0-20251102072520-0bf4a40d5737 h1:h9fCNlCiKSW5XTCeeu7MYl3qiKJ6Zd8PCmSLai/FRu8=
969+
github.com/yihuang/go-abi v0.0.0-20251102072520-0bf4a40d5737/go.mod h1:btymTlqoiLCR8Gj5bppalyNPSzQYUfK6YROYsihjGS4=
968970
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
969971
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
970972
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package contracts
22

3-
//go:generate go run github.com/yihuang/go-abi/cmd -input ICS20Caller.json -artifact-input -output ics20caller/abi.go
4-
//go:generate go run github.com/yihuang/go-abi/cmd -input DistributionCaller.json -artifact-input -package distcaller -output distcaller/abi.go
5-
//go:generate go run github.com/yihuang/go-abi/cmd -input Counter.json -artifact-input -package counter -output counter/abi.go
6-
//go:generate go run github.com/yihuang/go-abi/cmd -input FlashLoan.json -artifact-input -package flashloan -output flashloan/abi.go
7-
//go:generate go run github.com/yihuang/go-abi/cmd -input GovCaller.json -artifact-input -package govcaller -output govcaller/abi.go
3+
//go:generate go run github.com/yihuang/go-abi/cmd -input ICS20Caller.json -artifact-input -output ics20caller/abi.go -external-tuples Coin=cmn.Coin -imports cmn=github.com/cosmos/evm/precompiles/common
4+
//go:generate go run github.com/yihuang/go-abi/cmd -input DistributionCaller.json -artifact-input -package distcaller -output distcaller/abi.go -external-tuples Coin=cmn.Coin -imports cmn=github.com/cosmos/evm/precompiles/common
5+
//go:generate go run github.com/yihuang/go-abi/cmd -input Counter.json -artifact-input -package counter -output counter/abi.go -external-tuples Coin=cmn.Coin -imports cmn=github.com/cosmos/evm/precompiles/common
6+
//go:generate go run github.com/yihuang/go-abi/cmd -input FlashLoan.json -artifact-input -package flashloan -output flashloan/abi.go -external-tuples Coin=cmn.Coin -imports cmn=github.com/cosmos/evm/precompiles/common
7+
//go:generate go run github.com/yihuang/go-abi/cmd -input GovCaller.json -artifact-input -package govcaller -output govcaller/abi.go -external-tuples Coin=cmn.Coin -imports cmn=github.com/cosmos/evm/precompiles/common

0 commit comments

Comments
 (0)