diff --git a/pkg/grpc/grpc.go b/pkg/grpc/grpc.go index da04048..6a0bcd0 100644 --- a/pkg/grpc/grpc.go +++ b/pkg/grpc/grpc.go @@ -244,5 +244,6 @@ func LatestBlockHeight(ctx context.Context, cfg config.Config) (int64, error) { func bondStatus(status staking.BondStatus) string { statusWithoutPrefix, _ := strings.CutPrefix(status.String(), bondStatusPrefix) + return strings.ToLower(statusWithoutPrefix) }