From 0f911226ddfb00141f618035326c3af62d30be23 Mon Sep 17 00:00:00 2001 From: Alex Johnson Date: Fri, 23 Aug 2024 19:38:55 -0400 Subject: [PATCH] fix: id in prometheus metric (#699) Co-authored-by: Eric Warehime --- service/clients/marketmap/types/types.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/service/clients/marketmap/types/types.go b/service/clients/marketmap/types/types.go index 279bed175..fd7f38a06 100644 --- a/service/clients/marketmap/types/types.go +++ b/service/clients/marketmap/types/types.go @@ -1,8 +1,6 @@ package types import ( - "fmt" - "go.uber.org/zap" "github.com/skip-mev/slinky/oracle/config" @@ -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 (