Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Oct 22, 2024
1 parent af0069a commit 25914cb
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions x/gmp/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ func GetCmdRelay() *cobra.Command {

msg := types.NewMsgRelay(
clientCtx.GetFromAddress().String(),
args[0], // destination-chain e.g. "Ethereum"
args[1], // ojo-contract-address e.g. "0x001"
"", // customer-contract-address e.g. "0x002"
tokens, // amount
denoms, // denoms
commandSelector, // command-selector
commandParams, // command-params
args[0], // destination-chain e.g. "Ethereum"
args[1], // ojo-contract-address e.g. "0x001"
"", // customer-contract-address e.g. "0x002"
tokens, // amount
denoms, // denoms
commandSelector, // command-selector
commandParams, // command-params
0,
)
err = msg.ValidateBasic()
Expand Down Expand Up @@ -165,13 +165,13 @@ func GetCmdRelayWithContractCall() *cobra.Command {

msg := types.NewMsgRelay(
clientCtx.GetFromAddress().String(),
args[0], // destination-chain e.g. "Ethereum"
args[1], // ojo-contract-address e.g. "0x001"
args[2], // customer-contract-address e.g. "0x002"
tokens, // amount
denoms, // denoms
commandSelector, // command-selector
commandParams, // command-params
args[0], // destination-chain e.g. "Ethereum"
args[1], // ojo-contract-address e.g. "0x001"
args[2], // customer-contract-address e.g. "0x002"
tokens, // amount
denoms, // denoms
commandSelector, // command-selector
commandParams, // command-params
0,
)
err = msg.ValidateBasic()
Expand Down

0 comments on commit 25914cb

Please sign in to comment.