Skip to content

Commit

Permalink
use int64 when passing to cli for drip
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed May 18, 2024
1 parent 082823c commit c4e98a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interchaintest/module_drip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func TestJunoDrip(t *testing.T) {
helpers.StakeTokens(t, ctx, juno, user, valoper, fmt.Sprintf("%d%s", stakeAmt, nativeDenom))

// Drip the TF Tokens to all stakers
distribute := sdkmath.NewInt(1_000_000)
distribute := int64(1_000_000)
helpers.DripTokens(t, ctx, juno, user, fmt.Sprintf("%d%s", distribute, tfDenom))

// Claim staking rewards to capture the drip
Expand Down

0 comments on commit c4e98a9

Please sign in to comment.