p2p/simulations: enforce camel case variable names (#19053)

This commit is contained in:
Matthew Halpern 2019-02-19 09:50:59 -08:00 committed by Péter Szilágyi
parent 2e8a5e5659
commit d3ccedc767

View File

@ -193,7 +193,7 @@ OUTER:
connEventCount = nodeCount
OUTER_TWO:
OuterTwo:
for {
select {
case <-ctx.Done():
@ -211,7 +211,7 @@ OUTER_TWO:
connEventCount--
log.Debug("ev", "count", connEventCount)
if connEventCount == 0 {
break OUTER_TWO
break OuterTwo
}
}
}