From bbfdbf732cdaedfa112f0c058ea3557c98859409 Mon Sep 17 00:00:00 2001 From: James Dorfman Date: Fri, 21 Jul 2023 02:19:54 +0000 Subject: [PATCH] Remove extraneous sync in rpc_signrawtransaction functional test which should have been removed in the merge of bitcoin/bitcoin#23474 in bd68371fb6 --- test/functional/rpc_signrawtransaction.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/functional/rpc_signrawtransaction.py b/test/functional/rpc_signrawtransaction.py index a0c27d24f6..44d6b10d62 100755 --- a/test/functional/rpc_signrawtransaction.py +++ b/test/functional/rpc_signrawtransaction.py @@ -213,7 +213,6 @@ class SignRawTransactionsTest(BitcoinTestFramework): self.generate(self.nodes[0], COINBASE_MATURITY + 1, sync_fun=self.no_op) self.nodes[0].sendtoaddress(p2sh_p2wsh_address["address"], 49.999) self.generate(self.nodes[0], 1, sync_fun=self.no_op) - self.sync_all(self.nodes[:2]) # Get the UTXO info from scantxoutset unspent_output = self.nodes[1].scantxoutset('start', [p2sh_p2wsh_address['descriptor']])['unspents'][0] spk = script_to_p2sh_p2wsh_script(p2sh_p2wsh_address['redeemScript']).hex()