From 4ccc676cc2415e30d4cadc99c5c0255bbca66dc7 Mon Sep 17 00:00:00 2001 From: Ava Chow Date: Mon, 10 Jun 2024 17:07:11 -0400 Subject: [PATCH] fixup! test: Add combinerawtransaction test to rpc_createmultisig --- test/functional/rpc_createmultisig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/rpc_createmultisig.py b/test/functional/rpc_createmultisig.py index c268515bd37462..394990bd78874e 100755 --- a/test/functional/rpc_createmultisig.py +++ b/test/functional/rpc_createmultisig.py @@ -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]