diff --git a/mana_decay_provider.go b/mana_decay_provider.go index f0fc894dd..1728460cc 100644 --- a/mana_decay_provider.go +++ b/mana_decay_provider.go @@ -87,8 +87,6 @@ func (p *ManaDecayProvider) decay(value Mana, epochDiff EpochIndex) Mana { aux, _ := safemath.Safe64MulShift(uint64(value), decayFactor, p.decayFactorsExponent) value = Mana(aux) } - - // combine both uint64 variables to get the actual value return value }