prysmaticlabs / prysm

Unused method receiver RVV-B0013
Bug risk
Major
2 occurrences in this check
Method receiver 's' is not referenced in method's body, consider removing it
1095
1096// SyncCommitteeSelections responds with appropriate message and status code according the spec:
1097// https://ethereum.github.io/beacon-APIs/#/Validator/submitSyncCommitteeSelections.
1098func (s *Server) SyncCommitteeSelections(w http.ResponseWriter, _ *http.Request) {1099	httputil.HandleError(w, "Endpoint not implemented", 501)
1100}
1101
Method receiver 's' is not referenced in method's body, consider removing it
1089
1090// BeaconCommitteeSelections responds with appropriate message and status code according the spec:
1091// https://ethereum.github.io/beacon-APIs/#/Validator/submitBeaconCommitteeSelections.
1092func (s *Server) BeaconCommitteeSelections(w http.ResponseWriter, _ *http.Request) {1093	httputil.HandleError(w, "Endpoint not implemented", 501)
1094}
1095