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.
1 parent c202251 commit ed6de17Copy full SHA for ed6de17
metrics/metrics.go
@@ -100,9 +100,9 @@ func (m *Metrics) IncOperatorTaskResponses() {
100
}
101
102
func (m *Metrics) IncAggregatorPaidForBatcher() {
103
- m.aggregatorGasCostPaidForBatcherTotal.Inc()
+ m.aggregatorNumTimesPaidForBatcher.Inc()
104
105
106
func (m *Metrics) AddAggregatorGasPaidForBatcher(value float64) {
107
- m.aggregatorNumTimesPaidForBatcher.Add(value)
+ m.aggregatorGasCostPaidForBatcherTotal.Add(value)
108
0 commit comments