Skip to content

Commit bf08fc5

Browse files
committed
test: Assert on correct variable
1 parent 27278df commit bf08fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/rpc_rawtransaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def run_test(self):
289289
rawTx2 = self.nodes[2].createrawtransaction(inputs, outputs)
290290
rawTxPartialSigned1 = self.nodes[1].signrawtransactionwithwallet(rawTx2, inputs)
291291
self.log.debug(rawTxPartialSigned1)
292-
assert_equal(rawTxPartialSigned['complete'], False) #node1 only has one key, can't comp. sign the tx
292+
assert_equal(rawTxPartialSigned1['complete'], False) #node1 only has one key, can't comp. sign the tx
293293

294294
rawTxPartialSigned2 = self.nodes[2].signrawtransactionwithwallet(rawTx2, inputs)
295295
self.log.debug(rawTxPartialSigned2)

0 commit comments

Comments
 (0)