worker.go: use the correct data timestamp for getFiatRatesTickersList

pull/358/head
Vladyslav Burzakovskyy 2020-01-21 14:47:09 +01:00 committed by Martin
parent a8f436fe4c
commit 729c35334a
1 changed files with 1 additions and 1 deletions

View File

@ -1273,7 +1273,7 @@ func (w *Worker) GetFiatRatesTickersList(timestamp int64) (*db.ResultTickerListA
sort.Strings(keys) // sort to get deterministic results
return &db.ResultTickerListAsString{
Timestamp: timestamp,
Timestamp: ticker.Timestamp.Unix(),
Tickers: keys,
}, nil
}