Skip to content

Commit

Permalink
(BIDS-2403) make it lower to get higher (#2496)
Browse files Browse the repository at this point in the history
  • Loading branch information
MauserBitfly authored Aug 24, 2023
1 parent f5f8914 commit c8067dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func SearchAhead(w http.ResponseWriter, r *http.Request) {
if !utils.IsValidEnsDomain(search) && !utils.IsEth1Address(search) {
break
}
result, err = FindValidatorIndicesByEth1Address(search)
result, err = FindValidatorIndicesByEth1Address(strings.ToLower(search))
case "count_indexed_validators_by_eth1_address":
var ensData *types.EnsDomainResponse
if utils.IsValidEnsDomain(search) {
Expand Down

0 comments on commit c8067dc

Please sign in to comment.