Skip to content

Commit

Permalink
fix math types in ibc
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed May 18, 2024
1 parent c4e98a9 commit 27e8192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interchaintest/ibc_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ func TestJunoGaiaIBCTransfer(t *testing.T) {
// Get original account balances
junoOrigBal, err := juno.GetBalance(ctx, junoUserAddr, juno.Config().Denom)
require.NoError(t, err)
require.Equal(t, genesisWalletAmount, junoOrigBal.Int64())
require.Equal(t, genesisWalletAmount, junoOrigBal)

gaiaOrigBal, err := gaia.GetBalance(ctx, gaiaUserAddr, gaia.Config().Denom)
require.NoError(t, err)
require.Equal(t, genesisWalletAmount, gaiaOrigBal.Int64())
require.Equal(t, genesisWalletAmount, gaiaOrigBal)

// Compose an IBC transfer and send from Juno -> Gaia
var transferAmount = math.NewInt(1_000)
Expand Down

0 comments on commit 27e8192

Please sign in to comment.