From c4e98a90315b70bbf3276bbbbc20e97ea50b7706 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Sat, 18 May 2024 12:15:26 +0800 Subject: [PATCH] use int64 when passing to cli for drip --- interchaintest/module_drip_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interchaintest/module_drip_test.go b/interchaintest/module_drip_test.go index f25008c50..a8cc7ff35 100644 --- a/interchaintest/module_drip_test.go +++ b/interchaintest/module_drip_test.go @@ -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