deprecation fixed

This commit is contained in:
Stephan D
2025-12-11 11:22:51 +01:00
parent 2b68b59eca
commit 8db2f3926c

View File

@@ -3,7 +3,6 @@ package oracle
import (
"math/big"
"strings"
"time"
"github.com/tech/sendico/fx/storage/model"
"github.com/tech/sendico/pkg/decimal"
@@ -61,7 +60,3 @@ func priceFromRate(rate *model.RateSnapshot, side fxv1.Side) (*big.Rat, error) {
return ratFromString(priceStr)
}
func timeFromUnixMilli(ms int64) time.Time {
return time.Unix(0, ms*int64(time.Millisecond))
}