Skip to content

Commit

Permalink
disable checksummed
Browse files Browse the repository at this point in the history
  • Loading branch information
quasystaty1 committed May 30, 2024
1 parent 6e870fe commit aa0cc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server/dto.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func readAddress(r *http.Request) (string, error) {
if err := decodeJSONBody(r, &claimReq); err != nil {
return "", err
}
if !chain.IsValidAddress(claimReq.Address, true) {
if !chain.IsValidAddress(claimReq.Address, false) {
return "", &malformedRequest{status: http.StatusBadRequest, message: "invalid address"}
}

Expand Down

0 comments on commit aa0cc90

Please sign in to comment.