Skip to content

Commit

Permalink
integration-tests/gauntlet/gauntlet.go: fix TransferToken
Browse files Browse the repository at this point in the history
  • Loading branch information
cfal committed Aug 8, 2023
1 parent 445cbf0 commit 5f2b28c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/gauntlet/gauntlet.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 5f2b28c

Please sign in to comment.