mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 04:26:37 +00:00
p2p/simulations: enforce camel case variable names (#19053)
This commit is contained in:
parent
2e8a5e5659
commit
d3ccedc767
1 changed files with 2 additions and 2 deletions
|
|
@ -193,7 +193,7 @@ OUTER:
|
||||||
|
|
||||||
connEventCount = nodeCount
|
connEventCount = nodeCount
|
||||||
|
|
||||||
OUTER_TWO:
|
OuterTwo:
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
|
|
@ -211,7 +211,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