Skip to content

Commit 6149775

Browse files
committed
Adjust bitcoind location
It was moved by bitcoin/bitcoin#31161
1 parent 5f533aa commit 6149775

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/build-bitcoind/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
ccache --zero-stats
2424
cd test; ./setup_environment.sh --bitcoind; cd ..
2525
ccache --show-stats --verbose
26-
tar -czf bitcoind.tar.gz test/work/bitcoin/build/src/bitcoind
26+
tar -czf bitcoind.tar.gz test/work/bitcoin/build/bin/bitcoind
2727
2828
- uses: actions/cache/save@v4
2929
if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'

docs/examples/bitcoin-core-usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Clone Bitcoin Core and build it. Clone HWI.
3232
$ cd bitcoin
3333
$ cmake -B build
3434
$ cmake --build build
35-
$ build/src/bitcoind -daemon -addresstype=bech32 -changetype=bech32
35+
$ build/bin/bitcoind -daemon -addresstype=bech32 -changetype=bech32
3636
$ cd ..
3737
$ git clone https://github.com/bitcoin-core/HWI.git
3838
$ cd HWI

test/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
parser.add_argument('--bitbox02-path', dest='bitbox02_path', help='Path to BitBox02 simulator', default='work/bitbox02-firmware/build-build/bin/simulator')
6767

6868
parser.add_argument('--all', help='Run tests on all existing simulators', default=False, action='store_true')
69-
parser.add_argument('--bitcoind', help='Path to bitcoind', default='work/bitcoin/build/src/bitcoind')
69+
parser.add_argument('--bitcoind', help='Path to bitcoind', default='work/bitcoin/build/bin/bitcoind')
7070
parser.add_argument('--interface', help='Which interface to send commands over', choices=['library', 'cli', 'bindist', 'stdin'], default='library')
7171

7272
parser.add_argument("--device-only", help="Only run device tests", action="store_true")

0 commit comments

Comments
 (0)