Skip to content

Commit

Permalink
fix: host for esplora
Browse files Browse the repository at this point in the history
  • Loading branch information
DhananjayPurohit committed Aug 13, 2024
1 parent a40f257 commit eda1943
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
run: |
docker logs $(docker ps -qf "name=esplora-container")
docker exec $(docker ps -qf "name=esplora-container") \
curl http://esplora-container:8094/regtest/api/blocks/tip/height
curl http://0.0.0.0:8094/regtest/api/blocks/tip/height
docker logs $(docker ps -qf "name=esplora-container")
- name: Check connectivity between containers
run: |
Expand Down
4 changes: 2 additions & 2 deletions clients/tests/web/test-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const generateBlocks = async (blocks) => {
blocks
};

const url = `http://node-server:3000/generate_blocks`;
const url = `http://0.0.0.0:3000/generate_blocks`;

let response = await axios.post(url, body);

Expand All @@ -21,7 +21,7 @@ const depositCoin = async (address, amount) => {
amount
};

const url = `http://node-server:3000/deposit_amount`;
const url = `http://0.0.0.0:3000/deposit_amount`;

let response = await axios.post(url, body);

Expand Down

0 comments on commit eda1943

Please sign in to comment.