Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/justin/ci' into justin/ci
Browse files Browse the repository at this point in the history
# Conflicts:
#	chain/ethereum/ethererum_chain.go
#	chain/ethereum/foundry/forge.go
#	examples/ethereum/foundry_test.go
#	examples/thorchain/chainspec_thorchain.go
#	examples/thorchain/helper.go
#	examples/thorchain/setup.go
  • Loading branch information
jtieri committed Sep 5, 2024
2 parents feae6d2 + 136c4bd commit acc9b04
Show file tree
Hide file tree
Showing 41 changed files with 2,105 additions and 429 deletions.
6 changes: 5 additions & 1 deletion chain/cosmos/chain_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -850,8 +850,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 acc9b04

Please sign in to comment.