remove crypto from fiat prices

This commit is contained in:
jejolare 2025-05-06 17:10:55 +07:00
parent 994be2a109
commit 7bb465dc9e

View file

@ -1117,8 +1117,25 @@ async function waitForDb() {
}
delete fiatPrices.lastUpdated;
const entitiesToExclude = [
"lastUpdated",
"btc",
"eth",
"ltc",
"bch",
"bnb",
"eos",
"xrp",
"xlm",
"link",
"dot",
"yfi",
]
for (const entity of entitiesToExclude) {
delete fiatPrices[entity];
}
return fiatPrices;
}