mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +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
|
connEventCount = nodeCount
|
||||||
|
|
||||||
OUTER_TWO:
|
OuterTwo:
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
|
|
@ -210,7 +210,7 @@ OUTER_TWO:
|
||||||
connEventCount--
|
connEventCount--
|
||||||
log.Debug("ev", "count", connEventCount)
|
log.Debug("ev", "count", connEventCount)
|
||||||
if connEventCount == 0 {
|
if connEventCount == 0 {
|
||||||
break OUTER_TWO
|
break OuterTwo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue