Skip to content

Commit

Permalink
fix number type
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed May 18, 2024
1 parent 27e8192 commit 0978dba
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 @@ -51,7 +51,7 @@ func TestJunoDrip(t *testing.T) {
vals := helpers.GetValidators(t, ctx, juno)
valoper := vals.Validators[0].OperatorAddress

stakeAmt := sdkmath.NewInt(100_000_000_000)
stakeAmt := int64(100_000_000_000)
helpers.StakeTokens(t, ctx, juno, user, valoper, fmt.Sprintf("%d%s", stakeAmt, nativeDenom))

// Drip the TF Tokens to all stakers
Expand Down

0 comments on commit 0978dba

Please sign in to comment.