Skip to content

Commit

Permalink
fixup! test: Add combinerawtransaction test to rpc_createmultisig
Browse files Browse the repository at this point in the history
  • Loading branch information
achow101 committed Jun 10, 2024
1 parent ff91df6 commit 4ccc676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/rpc_createmultisig.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def do_multisig(self, nkeys, nsigs, output_type):
assert_equal(rawtx2["complete"], False)
rawtx3 = node2.signrawtransactionwithkey(rawtx, [priv_keys[-1]], prevtxs)
assert_equal(rawtx3["complete"], False)
combined_rawtx = node2.combinerawtransaction([rawtx2["hex"], rawtx3["hex"])
combined_rawtx = node2.combinerawtransaction([rawtx2["hex"], rawtx3["hex"]])

tx = node0.sendrawtransaction(combined_rawtx, 0)
blk = self.generate(node0, 1)[0]
Expand Down

0 comments on commit 4ccc676

Please sign in to comment.