From 9a856ec6a04fd4192b4918cb10431efc891e73d9 Mon Sep 17 00:00:00 2001 From: Saketh Are Date: Fri, 10 Mar 2023 08:24:22 -0500 Subject: [PATCH] fork_sync: fix boot nodes --- pytest/tests/adversarial/fork_sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest/tests/adversarial/fork_sync.py b/pytest/tests/adversarial/fork_sync.py index 6fe06b2a231..6a88cf468b2 100755 --- a/pytest/tests/adversarial/fork_sync.py +++ b/pytest/tests/adversarial/fork_sync.py @@ -46,7 +46,7 @@ logger.info("killing node 2 and 3") for i in range(2): - nodes[i].start(boot_node=nodes[i]) + nodes[i].start(boot_node=nodes[0]) res = nodes[i].json_rpc('adv_disable_doomslug', []) assert 'result' in res, res @@ -55,7 +55,7 @@ utils.wait_for_blocks(nodes[0], target=FIRST_STEP_WAIT + SECOND_STEP_WAIT) for i in range(2, 4): - nodes[i].start(boot_node=nodes[i]) + nodes[i].start(boot_node=nodes[0]) res = nodes[i].json_rpc('adv_disable_doomslug', []) assert 'result' in res, res