remove unused SetCurrencyPrice

This commit is contained in:
c9s 2020-08-05 18:34:33 +08:00
parent f276520186
commit 12dde9f57b

View File

@ -23,14 +23,6 @@ func (c *ProfitAndLossCalculator) AddTrade(trade types.Trade) {
c.Trades = append(c.Trades, trade) c.Trades = append(c.Trades, trade)
} }
func (c *ProfitAndLossCalculator) SetCurrencyPrice(symbol string, price float64) {
if c.CurrencyPrice == nil {
c.CurrencyPrice = map[string]float64{}
}
c.CurrencyPrice[symbol] = price
}
func (c *ProfitAndLossCalculator) SetCurrentPrice(price float64) { func (c *ProfitAndLossCalculator) SetCurrentPrice(price float64) {
c.CurrentPrice = price c.CurrentPrice = price
} }