diff options
| author | Matthew Halpern <matthalp@google.com> | 2019-02-20 01:50:59 +0800 |
|---|---|---|
| committer | Péter Szilágyi <peterke@gmail.com> | 2019-02-20 01:50:59 +0800 |
| commit | d3ccedc767372007e8b035c3d1f68218c3d59be5 (patch) | |
| tree | 7962b5d9daf9e2308f9a7420a3e0f4baabb4486f | |
| parent | 2e8a5e5659b7de9de16cdbb15e78ecf3417477c8 (diff) | |
| download | go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar.gz go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar.bz2 go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar.lz go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar.xz go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.tar.zst go-tangerine-d3ccedc767372007e8b035c3d1f68218c3d59be5.zip | |
p2p/simulations: enforce camel case variable names (#19053)
| -rw-r--r-- | p2p/simulations/network_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/p2p/simulations/network_test.go b/p2p/simulations/network_test.go index 8b644ffb0..01cd1000d 100644 --- a/p2p/simulations/network_test.go +++ b/p2p/simulations/network_test.go @@ -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 } } } |
