From 334ed2b173fcf48bbabe9e38a3ed9750a70537d3 Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Wed, 4 Aug 2021 08:09:29 -0300 Subject: [PATCH] Fix difficulty adjustment endpoint. --- src/app/bitcoin/difficulty.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/bitcoin/difficulty.ts b/src/app/bitcoin/difficulty.ts index b01fbff23..6d30e7e69 100644 --- a/src/app/bitcoin/difficulty.ts +++ b/src/app/bitcoin/difficulty.ts @@ -6,7 +6,7 @@ import { export const useDifficulty = (api: AxiosInstance): DifficultyInstance => { const getDifficultyAdjustment = async () => { - const { data } = await api.get(`/difficulty-adjustment`); + const { data } = await api.get(`/v1/difficulty-adjustment`); return data; };