spellcheck: fix and update (#1359)

* spellcheck: fix and update

* spellcheck: add exclude line for gateio_types
This commit is contained in:
Ryan O'Hara-Reid
2023-10-03 16:07:03 +11:00
committed by GitHub
parent 7f0faf7850
commit ecf0a5bcb3
31 changed files with 42 additions and 40 deletions

View File

@@ -1002,9 +1002,9 @@ func (b *Bitstamp) GetHistoricCandlesExtended(ctx context.Context, pair currency
}
for i := range candles.Data.OHLCV {
timstamp := time.Unix(candles.Data.OHLCV[i].Timestamp, 0)
if timstamp.Before(req.RangeHolder.Ranges[x].Start.Time) ||
timstamp.After(req.RangeHolder.Ranges[x].End.Time) {
timestamp := time.Unix(candles.Data.OHLCV[i].Timestamp, 0)
if timestamp.Before(req.RangeHolder.Ranges[x].Start.Time) ||
timestamp.After(req.RangeHolder.Ranges[x].End.Time) {
continue
}
timeSeries = append(timeSeries, kline.Candle{