File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
test/functional/test_framework Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff 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' || '' }}
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments