Skip to content

Commit

Permalink
Change electrumx server for debug purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-zimnoch committed Aug 19, 2021
1 parent f0ba14e commit f91b0e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/e2e-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ jobs:
- name: Run e2e tests
run: |
./e2e-test.js \
--bitcoin-electrum-host=${{ secrets.KEEP_TEST_ELECTRUMX_HOSTNAME }} \
--bitcoin-electrum-port=${{ secrets.KEEP_TEST_ELECTRUMX_PORT }} \
--bitcoin-network="testnet" \
--bitcoin-depositor-pk=${{ secrets.KEEP_TEST_BTC_DEPOSITOR_PK }} \
--ethereum-node=${{ secrets.KEEP_TEST_ETH_HOSTNAME_WS }} \
Expand Down
4 changes: 2 additions & 2 deletions e2e/e2e-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import wif from "wif"
import program from "commander"

program
.option('--bitcoin-electrum-host <host>', "electrum server host", "127.0.0.1")
.option('--bitcoin-electrum-port <port>', "electrum server port", (port) => parseInt(port, 10), 50003)
.option('--bitcoin-electrum-host <host>', "electrum server host", "34.70.22.39")
.option('--bitcoin-electrum-port <port>', "electrum server port", (port) => parseInt(port, 10), 8080)
.option('--bitcoin-network <network>', "type of the bitcoin network (\"regtest\"|\"testnet\")", "regtest")
.option('--bitcoin-depositor-pk <privateKey>', "private key of the Bitcoin depositor in WIF format", "cTj6Z9fxMr4pzfpUhiN8KssVzZjgQz9zFCfh87UrH8ZLjh3hGZKF")
.option('--ethereum-node <url>', "ethereum node url", "ws://127.0.0.1:8546")
Expand Down

0 comments on commit f91b0e4

Please sign in to comment.