Skip to content

Commit

Permalink
Update beacon-chain/rpc/prysm/beacon/handlers.go
Browse files Browse the repository at this point in the history
  • Loading branch information
rkapka authored Oct 1, 2024
1 parent 9dd4d31 commit 68b566f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/rpc/prysm/beacon/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func (s *Server) PublishBlobs(w http.ResponseWriter, r *http.Request) {

root, err := bytesutil.DecodeHexWithLength(req.BlockRoot, 32)
if err != nil {
httputil.HandleError(w, "Could not decode block root", http.StatusBadRequest)
httputil.HandleError(w, "Could not decode block root: " + err.Error(), http.StatusBadRequest)
return
}

Expand Down

0 comments on commit 68b566f

Please sign in to comment.