From fad585b6e59452bcd0344653537001adc99450dc Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Thu, 28 May 2026 12:04:14 +0200 Subject: [PATCH] test: Wait for node exit after crash in verify_utxo_hash --- test/functional/feature_dbcrash.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/feature_dbcrash.py b/test/functional/feature_dbcrash.py index 693bc50aa8d..24e663af821 100755 --- a/test/functional/feature_dbcrash.py +++ b/test/functional/feature_dbcrash.py @@ -170,6 +170,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework): nodei_utxo_hash = self.nodes[i].gettxoutsetinfo()['hash_serialized_3'] except Exception: # probably a crash on db flushing + self.wait_for_node_exit(i, timeout=10) nodei_utxo_hash = self.restart_node(i, expected_tip=self.nodes[3].getbestblockhash()) assert_equal(nodei_utxo_hash, node3_utxo_hash)