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

Remove dead code #181

Open
gusin13 opened this issue Dec 12, 2024 · 0 comments
Open

Remove dead code #181

gusin13 opened this issue Dec 12, 2024 · 0 comments

Comments

@gusin13
Copy link
Contributor

gusin13 commented Dec 12, 2024

There is still some dead left over code like this

func ParseFPStateQuery(r *http.Request, isOptional bool) (types.FinalityProviderQueryingState, *types.Error) {
state := r.URL.Query().Get("state")
if state == "" {
if isOptional {
return "", nil
}
}
stateEnum, err := indexerdbmodel.FromStringToFinalityProviderState(state)
if err != nil {
return "", types.NewErrorWithMsg(
http.StatusBadRequest, types.BadRequest, err.Error(),
)
}
return stateEnum, nil
}

find and remove what is not used

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant