From f7f118cb34e93565766665d597218d006f1a2712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3za=20Nagy?= Date: Thu, 1 Feb 2024 11:58:56 +0700 Subject: [PATCH] fix: update url to testnet --- src/app/hooks/use-confirmation-checker.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/hooks/use-confirmation-checker.ts b/src/app/hooks/use-confirmation-checker.ts index 3074d7ef..88555073 100644 --- a/src/app/hooks/use-confirmation-checker.ts +++ b/src/app/hooks/use-confirmation-checker.ts @@ -6,8 +6,8 @@ export function useConfirmationChecker( txID: string | undefined, vaultState: VaultState | undefined ): number { - const bitcoinExplorerTXURL = `https://devnet.dlc.link/electrs/tx/${txID}`; - const bitcoinExplorerHeightURL = `https://devnet.dlc.link/electrs/blocks/tip/height`; + const bitcoinExplorerTXURL = `https://testnet.dlc.link/electrs/tx/${txID}`; + const bitcoinExplorerHeightURL = `https://testnet.dlc.link/electrs/blocks/tip/height`; const fetchInterval = useRef(undefined); const [transactionProgress, setTransactionProgress] = useState(0);