Skip to content

Commit

Permalink
changing the hostname to check connection to docker containers
Browse files Browse the repository at this point in the history
  • Loading branch information
silkroadnomad committed Dec 2, 2024
1 parent 997f353 commit 3b95e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/playground.spec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { expect, test } from '@playwright/test';
import axios from 'axios';
import WebSocket from 'ws';
const websocketUrl = 'wss://localhost:8443';
const rpcUrl = 'http://localhost:18332';
const websocketUrl = 'wss://127.0.0.1:8443';
const rpcUrl = 'http://127.0.0.1:18332';
const rpcUser = 'admin';
const rpcPassword = 'adminpw';
const credentials = Buffer.from(`${rpcUser}:${rpcPassword}`).toString('base64');
Expand Down

0 comments on commit 3b95e97

Please sign in to comment.