Skip to content

Commit

Permalink
fix: broadcaster timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Oct 18, 2024
1 parent 86798af commit 3c68f10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/cosmos/sdk_boundary_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestSDKBoundaries(t *testing.T) {
NumValidators: &numValsOne, NumFullNodes: &numFullNodesZero,
},
},
relayerVersion: "v2.5.2",
relayerVersion: rly.DefaultContainerVersion,
},
{
name: "sdk 47 <-> 50",
Expand All @@ -55,7 +55,7 @@ func TestSDKBoundaries(t *testing.T) {
NumValidators: &numValsOne, NumFullNodes: &numFullNodesZero,
},
},
relayerVersion: "v2.5.2",
relayerVersion: rly.DefaultContainerVersion,
},
}

Expand Down
5 changes: 4 additions & 1 deletion interchain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -418,13 +418,16 @@ func broadcastTxCosmosChainTest(t *testing.T, relayerImpl ibc.RelayerImplementat
transferAmount := sdk.Coin{Denom: chain0.Config().Denom, Amount: sendAmount}
memo := ""

h, err := chain0.Height(ctx)
require.NoError(t, err)

msg := transfertypes.NewMsgTransfer(
"transfer",
"channel-0",
transferAmount,
testUser.FormattedAddress(),
testUser.(*cosmos.CosmosWallet).FormattedAddressWithPrefix(chain1.Config().Bech32Prefix),
clienttypes.NewHeight(1, 1000),
clienttypes.NewHeight(2, uint64(h)+100),
0,
memo,
)
Expand Down

0 comments on commit 3c68f10

Please sign in to comment.