diff --git a/internal/helper/binancex/resolver_test.go b/internal/helper/binancex/resolver_test.go index a757627..5232a78 100644 --- a/internal/helper/binancex/resolver_test.go +++ b/internal/helper/binancex/resolver_test.go @@ -25,7 +25,8 @@ func (m *resolverMarketStub) IsAlphaToken(symbol string) bool func (m *resolverMarketStub) GetAlphaToken(symbol string) (market.AlphaTokenInfo, bool) { return market.AlphaTokenInfo{}, false } -func (m *resolverMarketStub) IsSpotPair(symbol string) bool { return m.spotPairs[symbol] } +func (m *resolverMarketStub) GetAlphaPrice(symbol string) (float64, bool) { return 0, false } +func (m *resolverMarketStub) IsSpotPair(symbol string) bool { return m.spotPairs[symbol] } func (m *resolverMarketStub) IsFuturesPair(symbol string) bool { return m.futuresPairs[symbol] } func (m *resolverMarketStub) RefreshTradingPairCache() error { return nil }