Skip to content

Commit

Permalink
fix: add wallet name in bitcoind command
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Feb 2, 2024
1 parent ec7c627 commit 2fd5faf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

env:
STACKS_BLOCKCHAIN_COMMIT: 74e3cedeec5215f3286af6565c1503e578a848fb
STACKS_BLOCKCHAIN_COMMIT: 5c14a440d26c012a0df59f1de0ede7b7a0ea76cd

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.e2e
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM rust:bookworm as builder

# A commit hash, tag, or branch
ARG GIT_COMMIT=74e3cedeec5215f3286af6565c1503e578a848fb
ARG GIT_COMMIT=5c14a440d26c012a0df59f1de0ede7b7a0ea76cd
ARG BLOCKCHAIN_REPO=https://github.com/stacks-network/stacks-blockchain.git

ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-follower.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"

x-common-vars:
- &STACKS_BLOCKCHAIN_COMMIT 74e3cedeec5215f3286af6565c1503e578a848fb
- &STACKS_BLOCKCHAIN_COMMIT 5c14a440d26c012a0df59f1de0ede7b7a0ea76cd
- &MINER_PUB_KEY 035379aa40c02890d253cfa577964116eb5295570ae9f7287cbae5f2585f5b2c7c
- &BITCOIN_PEER_PORT 18444
- &BITCOIN_RPC_PORT 18443
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"

x-common-vars:
- &STACKS_BLOCKCHAIN_COMMIT 74e3cedeec5215f3286af6565c1503e578a848fb
- &STACKS_BLOCKCHAIN_COMMIT 5c14a440d26c012a0df59f1de0ede7b7a0ea76cd
- &BTC_ADDR miEJtNKa3ASpA19v5ZhvbKTEieYjLpzCYT
- &MINER_SEED 9e446f6b0c6a96cf2190e54bcd5a8569c3e386f091605499464389b8d4e0bfc201 # stx: STEW4ZNT093ZHK4NEQKX8QJGM2Y7WWJ2FQQS5C19, btc: miEJtNKa3ASpA19v5ZhvbKTEieYjLpzCYT, pub_key: 035379aa40c02890d253cfa577964116eb5295570ae9f7287cbae5f2585f5b2c7c, wif: cStMQXkK5yTFGP3KbNXYQ3sJf2qwQiKrZwR9QJnksp32eKzef1za
- &BITCOIN_PEER_PORT 18444
Expand Down Expand Up @@ -70,7 +70,7 @@ services:
trap "exit" INT TERM
trap "kill 0" EXIT
bitcoin-cli -rpcconnect=bitcoind -rpcwait getmininginfo
bitcoin-cli -rpcconnect=bitcoind -named createwallet wallet_name="" descriptors=false
bitcoin-cli -rpcconnect=bitcoind -named createwallet wallet_name=main descriptors=false
bitcoin-cli -rpcconnect=bitcoind importaddress $${BTC_ADDR} "" false
bitcoin-cli -rpcconnect=bitcoind generatetoaddress $${INIT_BLOCKS} $${BTC_ADDR}
DEFAULT_TIMEOUT=$$(($$(date +%s) + 30))
Expand Down

0 comments on commit 2fd5faf

Please sign in to comment.