From c17cc76a1877a5ee5f60501eb66d0ef2e5ebfe1e Mon Sep 17 00:00:00 2001 From: will Date: Tue, 26 May 2026 19:39:03 +0100 Subject: [PATCH] test: speed up feature_dbcrash --- test/functional/feature_dbcrash.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/feature_dbcrash.py b/test/functional/feature_dbcrash.py index 6b6c63c4557..98aabb8d493 100755 --- a/test/functional/feature_dbcrash.py +++ b/test/functional/feature_dbcrash.py @@ -196,12 +196,12 @@ class ChainstateWriteCrashTest(BitcoinTestFramework): # Sanity check -- if we chose inputs that are too small, skip continue - self.wallet.send_self_transfer_multi( - from_node=node, + tx = self.wallet.create_self_transfer_multi( utxos_to_spend=utxos_to_spend, num_outputs=3, fee_per_output=FEE // 3, ) + node.sendrawtransaction(hexstring=tx["hex"], maxfeerate=0) num_transactions += 1 def run_test(self):