Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
feat(proposer): update prover endpoint scheme check
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Sep 21, 2023
1 parent 90336f9 commit c8256d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposer/prover_selector/eth_fee_eoa_selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func NewETHFeeEOASelector(
}

for _, endpoint := range proverEndpoints {
if endpoint.Scheme != httpScheme || endpoint.Scheme != httpsScheme {
if endpoint.Scheme != httpScheme && endpoint.Scheme != httpsScheme {
return nil, fmt.Errorf("invalid prover endpoint %s", endpoint)
}
}
Expand Down

0 comments on commit c8256d4

Please sign in to comment.