Skip to content

Commit

Permalink
Update relayer/relay_message_api_handler.go
Browse files Browse the repository at this point in the history
Co-authored-by: cam-schultz <78878559+cam-schultz@users.noreply.github.com>
Signed-off-by: Geoff Stuart <geoff.vball@gmail.com>
  • Loading branch information
geoff-vball and cam-schultz authored Jun 14, 2024
1 parent 8325943 commit 23a9b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/relay_message_api_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func RelayMessageAPIHandler() http.HandlerFunc {

blockchainID, err := ids.FromString(req.BlockchainID)
if err != nil {
http.Error(w, "invalid blockchainID"+err.Error(), http.StatusBadRequest)
http.Error(w, "invalid blockchainID: "+err.Error(), http.StatusBadRequest)
return
}
messageID := common.HexToHash(req.MessageID)
Expand Down

0 comments on commit 23a9b2a

Please sign in to comment.