From 32d55e28af69ef09094ba921289bf4d1ad79905a Mon Sep 17 00:00:00 2001 From: Ava Chow Date: Mon, 28 Apr 2025 14:44:06 -0700 Subject: [PATCH] test: Use the correct node for doubled keypath test --- test/functional/wallet_backwards_compatibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/wallet_backwards_compatibility.py b/test/functional/wallet_backwards_compatibility.py index 5354e284164..62d28abcb3c 100755 --- a/test/functional/wallet_backwards_compatibility.py +++ b/test/functional/wallet_backwards_compatibility.py @@ -87,7 +87,7 @@ class BackwardsCompatibilityTest(BitcoinTestFramework): # 0.21.x and 22.x would both produce bad derivation paths when topping up an inactive hd chain # Make sure that this is being automatically cleaned up by migration node_master = self.nodes[1] - node_v22 = self.nodes[self.num_nodes - 5] + node_v22 = self.nodes[self.num_nodes - 3] wallet_name = "bad_deriv_path" node_v22.createwallet(wallet_name=wallet_name, descriptors=False) bad_deriv_wallet = node_v22.get_wallet_rpc(wallet_name)