From b3606e46c13213bcff8ad3f4fc32ad4c0e138371 Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Mon, 31 May 2021 20:02:16 -0300 Subject: [PATCH] Fix getAddress endpoint url. --- src/app/bisq/addresses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/bisq/addresses.ts b/src/app/bisq/addresses.ts index c1c5857fd..4ba09ba7b 100644 --- a/src/app/bisq/addresses.ts +++ b/src/app/bisq/addresses.ts @@ -3,7 +3,7 @@ import { Address, AddressesInstance } from '../../interfaces/bisq/addresses'; export const useAddresses = (api: AxiosInstance): AddressesInstance => { const getAddress = async (params: { address: string }) => { - const { data } = await api.get
(`/block/${params.address}`); + const { data } = await api.get
(`/address/${params.address}`); return data; };