Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
delivan committed Jul 22, 2024
1 parent 08acb31 commit 7e9ffe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const checkCoinGeckoIds = async (...coinGeckoIds: string[]) => {
for (const coinGeckoId of coinGeckoIds) {
if (data[coinGeckoId] == null || data[coinGeckoId]["usd"] == null) {
throw new Error(
`Failed to fetch coinGeckoId ${coinGeckoId} from coin gecko`,
`Failed to fetch coinGeckoId ${coinGeckoId} from coingecko`,
);
}
}
Expand Down

0 comments on commit 7e9ffe2

Please sign in to comment.