Skip to content

Commit

Permalink
fork_sync: fix boot nodes (near#8711)
Browse files Browse the repository at this point in the history
  • Loading branch information
saketh-are authored and nikurt committed Mar 15, 2023
1 parent 32e7b5f commit ca3967e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytest/tests/adversarial/fork_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit ca3967e

Please sign in to comment.