From ba1a712cda14574ef0a24ee66fc4328d83fbc956 Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Wed, 11 Oct 2023 18:50:35 +0200 Subject: [PATCH] chore: fix missing protocol --- src/shared/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/constants.ts b/src/shared/constants.ts index 1087a7770fe..320012157f9 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -145,12 +145,12 @@ const networkSbtcDevenv: NetworkConfiguration = { stacks: { blockchain: 'stacks', chainId: ChainID.Testnet, - url: 'localhost:3999', + url: 'http://localhost:3999', }, bitcoin: { blockchain: 'bitcoin', network: 'regtest', - url: 'localhost:8999/api', + url: 'http://localhost:8999/api', }, }, };