Skip to content

Commit

Permalink
fix: id in prometheus metric (#699)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Warehime <eric.warehime@gmail.com>
  • Loading branch information
aljo242 and Eric-Warehime committed Dec 11, 2024
1 parent c44d41f commit 0f91122
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions service/clients/marketmap/types/types.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package types

import (
"fmt"

"go.uber.org/zap"

"github.com/skip-mev/slinky/oracle/config"
Expand All @@ -26,7 +24,7 @@ type Chain struct {

// String returns the string representation of the Chain schema.
func (mms Chain) String() string {
return fmt.Sprintf("ChainID: %s", mms.ChainID)
return mms.ChainID
}

type (
Expand Down

0 comments on commit 0f91122

Please sign in to comment.