Skip to content

Commit 6a1762a

Browse files
committed
adjustments
1 parent cf4e9e1 commit 6a1762a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

analyzer-v2/config/config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ blockchain: mainnet
88
#log-format: standard
99
log-format: external
1010

11-
analyze-committee-duty: true
12-
#analyze-committee-duty: false
11+
#analyze-committee-duty: true
12+
analyze-committee-duty: false
1313

14-
#analyze-proposer-duty: true
15-
analyze-proposer-duty: false
14+
analyze-proposer-duty: true
15+
#analyze-proposer-duty: false
1616
#analyze-aggregator-duty: true
1717
analyze-aggregator-duty: false
1818
#analyze-aggregator-duty: true
1919
#analyze-sync-committee-contribution-duty: true
2020
analyze-sync-committee-contribution-duty: false
2121

22-
duty-id: COMMITTEE-62_66_121_185_256_356_695
23-
target-slot: 12556753
22+
#duty-id: COMMITTEE-62_66_121_185_256_356_695
23+
target-slot: 12558663

analyzer-v2/duties/common.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,12 @@ func containsUnexpectedError(line string) bool {
123123
return false
124124
}
125125

126-
if strings.Contains(line, "invalid partial sig slot") {
127-
return false
128-
}
126+
// Until https://github.com/ssvlabs/ssv/pull/2445 is merged, we cannot filter out lines with
127+
// `invalid partial sig slot` because they might refer not only to past messages that are irrelevant
128+
// but also to future messages.
129+
//if strings.Contains(line, "invalid partial sig slot") {
130+
// return false
131+
//}
129132

130133
if strings.Contains(line, "invalid post-consensus message: no running duty") {
131134
return false

0 commit comments

Comments
 (0)