File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,16 @@ blockchain: mainnet
88# log-format: standard
99log-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
1717analyze-aggregator-duty : false
1818# analyze-aggregator-duty: true
1919# analyze-sync-committee-contribution-duty: true
2020analyze-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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments