diff --git a/engine/units_counter.go b/engine/units_counter.go index 5b9a90d5e..235ae48fe 100644 --- a/engine/units_counter.go +++ b/engine/units_counter.go @@ -59,7 +59,7 @@ func (uc *UnitsCounter) GetGeneralBalance() *Balance { func (uc *UnitsCounter) addUnits(amount float64, prefix string) { counted := false if prefix != "" { - for _, mb := range uc.Balances[1:] { // skip the general balance + for _, mb := range uc.Balances { if !mb.HasDestination() { continue }