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:
260
260
env :
261
261
BITCOIND : ' ${{ github.workspace }}\build\bin\Release\bitcoind.exe'
262
262
BITCOINCLI : ' ${{ github.workspace }}\build\bin\Release\bitcoin-cli.exe'
263
+ BITCOINTX : ' ${{ github.workspace }}\build\bin\Release\bitcoin-tx.exe'
263
264
BITCOINUTIL : ' ${{ github.workspace }}\build\bin\Release\bitcoin-util.exe'
264
265
BITCOINWALLET : ' ${{ github.workspace }}\build\bin\Release\bitcoin-wallet.exe'
265
266
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):
84
84
# Add -nonamed because "bitcoin rpc" enables -named by default, but bitcoin-cli doesn't
85
85
return self ._argv ("rpc" , self .paths .bitcoincli ) + ["-nonamed" ]
86
86
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
+
87
91
def util_argv (self ):
88
92
"Return argv array that should be used to invoke bitcoin-util"
89
93
return self ._argv ("util" , self .paths .bitcoinutil )
@@ -288,6 +292,7 @@ def get_binary_paths(self):
288
292
"bitcoind" : "BITCOIND" ,
289
293
"bitcoin-cli" : "BITCOINCLI" ,
290
294
"bitcoin-util" : "BITCOINUTIL" ,
295
+ "bitcoin-tx" : "BITCOINTX" ,
291
296
"bitcoin-chainstate" : "BITCOINCHAINSTATE" ,
292
297
"bitcoin-wallet" : "BITCOINWALLET" ,
293
298
}
You can’t perform that action at this time.
0 commit comments