diff --git a/staker/_helper_test.gno b/staker/_helper_test.gno index 8cde3a154..8e430859c 100644 --- a/staker/_helper_test.gno +++ b/staker/_helper_test.gno @@ -561,5 +561,5 @@ func getNumPoolTiers(t *testing.T) (uint64, uint64, uint64) { tier2Num := poolTier.count[2].tree.Size() tier3Num := poolTier.count[3].tree.Size() - return tier1Num, tier2Num, tier3Num + return uint64(tier1Num), uint64(tier2Num), uint64(tier3Num) }