diff --git a/x/pot/keeper/distribute.go b/x/pot/keeper/distribute.go index 806919b8..f6fd7104 100644 --- a/x/pot/keeper/distribute.go +++ b/x/pot/keeper/distribute.go @@ -413,7 +413,7 @@ func (k Keeper) GetTotalConsumedNoz(trafficList []types.SingleWalletVolume) sdk. totalTraffic := sdk.ZeroInt() for _, vol := range trafficList { toAdd := vol.Volume - totalTraffic = totalTraffic.Add(*toAdd) + totalTraffic = totalTraffic.Add(toAdd) } return totalTraffic }