mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
p2p/simulations: enforce camel case variable names
This commit is contained in:
parent
41597c2856
commit
37dc55e13e
1 changed files with 2 additions and 2 deletions
|
|
@ -192,7 +192,7 @@ OUTER:
|
|||
|
||||
connEventCount = nodeCount
|
||||
|
||||
OUTER_TWO:
|
||||
OuterTwo:
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
|
|
@ -210,7 +210,7 @@ OUTER_TWO:
|
|||
connEventCount--
|
||||
log.Debug("ev", "count", connEventCount)
|
||||
if connEventCount == 0 {
|
||||
break OUTER_TWO
|
||||
break OuterTwo
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue