Skip to content

Commit a49169a

Browse files
committed
avoid simultaneous connections
1 parent 253bb10 commit a49169a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

gossipsub-interop/experiment.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ def partial_message_chain_scenario(
121121
# Each node connects to both previous and next (except first and last)
122122
for i in range(node_count):
123123
connections = []
124-
if i > 0:
125-
connections.append(i - 1) # Connect to previous
126124
if i < node_count - 1:
127125
connections.append(i + 1) # Connect to next
128126

0 commit comments

Comments
 (0)