Skip to content

Commit

Permalink
chore: use bitcoin core wallet script
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed Dec 13, 2024
1 parent 462fcea commit b0c86ea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions cmd/zetae2e/config/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ rpcs:
evm: "http://localhost:8545"
bitcoin:
host: "localhost:18443"
user: "smoketest"
pass: "123"
user: "admin"
pass: "admin"
http_post_mode: true
disable_tls: true
params: regnet
Expand Down
4 changes: 2 additions & 2 deletions cmd/zetae2e/config/localnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ rpcs:
evm: "http://eth:8545"
bitcoin:
host: "bitcoin:18443"
user: "smoketest"
pass: "123"
user: "admin"
pass: "admin"
http_post_mode: true
disable_tls: true
params: regnet
Expand Down
18 changes: 8 additions & 10 deletions contrib/localnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,23 +198,21 @@ services:
ipv4_address: 172.20.0.102

bitcoin:
image: ghcr.io/zeta-chain/bitcoin-core-docker:28.0
image: ghcr.io/zeta-chain/bitcoin-core-docker:a94b52f
container_name: bitcoin
hostname: bitcoin
networks:
mynetwork:
ipv4_address: 172.20.0.101
ports:
- "18443:18443"
command:
-printtoconsole
-regtest=1
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcauth=smoketest:63acf9b8dccecce914d85ff8c044b78b$$5892f9bbc84f4364e79f0970039f88bdd823f168d4acc76099ab97b14a766a99
-txindex=1
-deprecatedrpc=create_bdb
-deprecatedrpc=warnings
command: /opt/wallet.sh
environment:
- CHAIN=regtest
- RPC_USER=smoketest
- RPC_PASSWORD=123
- ADMIN_RPC_USER=admin
- ADMIN_RPC_PASSWORD=admin

solana:
image: solana-local:latest
Expand Down

0 comments on commit b0c86ea

Please sign in to comment.