Merge pull request #3186 from mempool/nymkappa/ignore-nega-usd-price

Ignore negative USD prices
This commit is contained in:
wiz 2023-03-01 19:20:12 +09:00 committed by GitHub
commit 9d290562cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ export const MAX_PRICES = {
class PricesRepository {
public async $savePrices(time: number, prices: IConversionRates): Promise<void> {
if (prices.USD === 0) {
if (prices.USD === -1) {
// Some historical price entries have no USD prices, so we just ignore them to avoid future UX issues
// As of today there are only 4 (on 2013-09-05, 2013-0909, 2013-09-12 and 2013-09-26) so that's fine
return;