Skip to content

Commit

Permalink
Merge branch 'main' into justin/templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jtieri authored Sep 4, 2024
2 parents 81923ee + 07390b0 commit 3b898ed
Show file tree
Hide file tree
Showing 41 changed files with 2,110 additions and 438 deletions.
6 changes: 5 additions & 1 deletion chain/cosmos/chain_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -852,8 +852,12 @@ func (tn *ChainNode) SendIBCTransfer(
amount ibc.WalletAmount,
options ibc.TransferOptions,
) (string, error) {
port := "transfer"
if options.Port != "" {
port = options.Port
}
command := []string{
"ibc-transfer", "transfer", "transfer", channelID,
"ibc-transfer", "transfer", port, channelID,
amount.Address, fmt.Sprintf("%s%s", amount.Amount.String(), amount.Denom),
"--gas", "auto",
}
Expand Down
Loading

0 comments on commit 3b898ed

Please sign in to comment.