Skip to content

Commit

Permalink
fix: update url to testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
rozanagy committed Feb 1, 2024
1 parent 213cc12 commit f7f118c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/hooks/use-confirmation-checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<number | undefined>(undefined);

const [transactionProgress, setTransactionProgress] = useState(0);
Expand Down

0 comments on commit f7f118c

Please sign in to comment.