Skip to content

Commit

Permalink
Transfer back to a different address (funglible token transfer check)
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Oct 3, 2024
1 parent 77949e6 commit 4663ab9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/ibc_transfer_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (s *IBCTransferTestSuite) Test1IBCTransfer() {
// Only one denom in B
s.Require().Len(balanceB, 1)

// Send transfer from val in chain-A (Node 3) to val in chain-B
// Send transfer from val in chain-A (Node 3) to val in chain-B (Node 3)
babylonNodeA.SendIBCTransfer(val, addrB, "transfer", transferCoin)

time.Sleep(10 * time.Second)
Expand All @@ -110,7 +110,7 @@ func (s *IBCTransferTestSuite) Test2IBCTransferBack() {
bbnChainA := s.configurer.GetChainConfig(0)
bbnChainB := s.configurer.GetChainConfig(1)

babylonNodeA, err := bbnChainA.GetNodeAtIndex(2)
babylonNodeA, err := bbnChainA.GetNodeAtIndex(0)
s.NoError(err)
babylonNodeB, err := bbnChainB.GetNodeAtIndex(2)
s.NoError(err)
Expand All @@ -128,7 +128,7 @@ func (s *IBCTransferTestSuite) Test2IBCTransferBack() {

transferCoin := sdk.NewInt64Coin(denom, amount)

// Send transfer from val in chain-B (Node 3) to val in chain-A
// Send transfer from val in chain-B (Node 3) to val in chain-A (Node 1)
addrA := babylonNodeA.GetWallet(val)
balanceA, err := babylonNodeA.QueryBalances(addrA)
s.Require().NoError(err)
Expand Down

0 comments on commit 4663ab9

Please sign in to comment.