Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some function names in comment #548

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions logging/slog_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var defaultTintOptions = tint.Options{
NoColor: false,
}

// NewSlogTextLogger creates a new SLogger with a text handler
// NewTextSLogger creates a new SLogger with a text handler
// Default behavior is colored log outputs. To disable colors, set opts.NoColor to true.
func NewTextSLogger(outputWriter io.Writer, opts *SLoggerOptions) *SLogger {
var tintOptions tint.Options
Expand All @@ -74,7 +74,7 @@ func NewTextSLogger(outputWriter io.Writer, opts *SLoggerOptions) *SLogger {
}
}

// NewSlogJsonLogger creates a new SLogger with a Json handler
// NewJsonSLogger creates a new SLogger with a Json handler
// Currently colors are not supported with json handler. If colors are required,
// use NewTextSLogger instead.
func NewJsonSLogger(outputWriter io.Writer, opts *SLoggerOptions) *SLogger {
Expand Down
2 changes: 1 addition & 1 deletion metrics/eigenmetrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (m *EigenMetrics) initMetrics() {
// them to be 0 on every json-rpc... but is that really necessary?
}

// AddEigenFeeEarnedTotal adds the fee earned to the total fee earned metric
// AddFeeEarnedTotal adds the fee earned to the total fee earned metric
func (m *EigenMetrics) AddFeeEarnedTotal(amount float64, token string) {
m.feeEarnedTotal.WithLabelValues(token).Add(amount)
}
Expand Down