From aa33fb09666d3680df7c6cc20ac52db5a112854b Mon Sep 17 00:00:00 2001 From: MrTuxedo Date: Fri, 21 Apr 2023 22:20:09 -0700 Subject: [PATCH] remove unnecessary await --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index a6d3879..2e75190 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,7 +24,7 @@ const client = new DiscordClient({ intents: [GatewayIntentBits.Guilds, GatewayIn const doAlerts = createGasAlertChecker(client); -const setDiscordStatus = async ({ average, fast, slow }: GasPrices) => { +const setDiscordStatus = ({ average, fast, slow }: GasPrices) => { if (client.user) { client.user.setActivity( `⚡ ${fast} ⦚🚶 ${average} ⦚ 🐢 ${slow}` @@ -78,8 +78,8 @@ client.login(token) // Start listening to blockchain averageGasPricesObservable.subscribe({ next: async (averageGasPrices) => { + setDiscordStatus(averageGasPrices); await redisClient.set('current-prices', JSON.stringify(averageGasPrices)) - await setDiscordStatus(averageGasPrices); await doAlerts(averageGasPrices); }, error: console.error,