We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6757b5 + 5a11567 commit 7be66e5Copy full SHA for 7be66e5
chia-log-analyzer.go
@@ -320,22 +320,20 @@ func parseLines(lines []string) {
320
if s == "" {
321
continue
322
}
323
- if startParsingLines == false {
+ if !startParsingLines {
324
if lastRow == "" { //first run ?
325
startParsingLines = true
326
} else {
327
if lastRow == s {
328
329
- continue
330
- } else {
331
332
+ continue
333
334
335
336
lastRow = s
337
338
- if regexPlotsFarming.MatchString(s) == true {
+ if regexPlotsFarming.MatchString(s) {
339
lastParsedLinesStack.push(s)
340
341
match := regexPlotsFarming.FindStringSubmatch(s)
0 commit comments