We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253bb10 commit a49169aCopy full SHA for a49169a
1 file changed
gossipsub-interop/experiment.py
@@ -121,8 +121,6 @@ def partial_message_chain_scenario(
121
# Each node connects to both previous and next (except first and last)
122
for i in range(node_count):
123
connections = []
124
- if i > 0:
125
- connections.append(i - 1) # Connect to previous
126
if i < node_count - 1:
127
connections.append(i + 1) # Connect to next
128
0 commit comments