Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Dec 20, 2023
1 parent c1dae2d commit 674ebfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambdas/update-prices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const handler = wrapHandler(async (): Promise<any> => {
log('Fetching all tokens.');
const tokens = await getTokens();
log(`Fetched ${tokens.length} tokens. Updating token prices`);
await updateTokenPrices(tokens, true);
await updateTokenPrices(tokens);
log(`Updated prices`);
return { statusCode: 201, body: '' };
} catch (e) {
Expand Down

0 comments on commit 674ebfc

Please sign in to comment.