From 5f2b28cc9221fb8c3f9375060a88b51bd229ac03 Mon Sep 17 00:00:00 2001 From: cfal Date: Tue, 8 Aug 2023 20:35:08 +0800 Subject: [PATCH] integration-tests/gauntlet/gauntlet.go: fix TransferToken --- integration-tests/gauntlet/gauntlet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/gauntlet/gauntlet.go b/integration-tests/gauntlet/gauntlet.go index 0ce74188..579d1698 100644 --- a/integration-tests/gauntlet/gauntlet.go +++ b/integration-tests/gauntlet/gauntlet.go @@ -149,7 +149,7 @@ func (cg *CosmosGauntlet) MintLinkToken(token, to, amount string) (string, error } func (cg *CosmosGauntlet) TransferToken(token, to, amount string) (string, error) { - _, err := cg.G.ExecCommand([]string{"ERC20:transfer", fmt.Sprintf("--recipient=%s", to), fmt.Sprintf("--amount=%s", amount), token}, *cg.options) + _, err := cg.G.ExecCommand([]string{"cw20_base:transfer", fmt.Sprintf("--to=%s", to), fmt.Sprintf("--amount=%s", amount), token}, *cg.options) if err != nil { return "", err }