Skip to content

Commit fac9db6

Browse files
author
MarcoFalke
committed
test: Add missing tx util to Binaries
1 parent fa91835 commit fac9db6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ jobs:
260260
env:
261261
BITCOIND: '${{ github.workspace }}\build\bin\Release\bitcoind.exe'
262262
BITCOINCLI: '${{ github.workspace }}\build\bin\Release\bitcoin-cli.exe'
263+
BITCOINTX: '${{ github.workspace }}\build\bin\Release\bitcoin-tx.exe'
263264
BITCOINUTIL: '${{ github.workspace }}\build\bin\Release\bitcoin-util.exe'
264265
BITCOINWALLET: '${{ github.workspace }}\build\bin\Release\bitcoin-wallet.exe'
265266
TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }}

test/functional/test_framework/test_framework.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ def rpc_argv(self):
8484
# Add -nonamed because "bitcoin rpc" enables -named by default, but bitcoin-cli doesn't
8585
return self._argv("rpc", self.paths.bitcoincli) + ["-nonamed"]
8686

87+
def tx_argv(self):
88+
"Return argv array that should be used to invoke bitcoin-tx"
89+
return self._argv("tx", self.paths.bitcointx)
90+
8791
def util_argv(self):
8892
"Return argv array that should be used to invoke bitcoin-util"
8993
return self._argv("util", self.paths.bitcoinutil)
@@ -288,6 +292,7 @@ def get_binary_paths(self):
288292
"bitcoind": "BITCOIND",
289293
"bitcoin-cli": "BITCOINCLI",
290294
"bitcoin-util": "BITCOINUTIL",
295+
"bitcoin-tx": "BITCOINTX",
291296
"bitcoin-chainstate": "BITCOINCHAINSTATE",
292297
"bitcoin-wallet": "BITCOINWALLET",
293298
}

0 commit comments

Comments
 (0)