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

Commit

Permalink
feat: update selector
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Sep 18, 2023
1 parent a71c793 commit 5ea7e3b
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 @@ -246,7 +246,7 @@ func assignProver(
result.SignedPayload[64] = uint8(uint(result.SignedPayload[64])) + 27

// If this assignment is to oracle prover, change prover address in assignment to `LibUtils.ORACLE_PROVER`
if result.Prover == orcaleProverAddress {
if orcaleProverAddress != (common.Address{}) && result.Prover == orcaleProverAddress {
result.Prover = encoding.OracleProverAddress
}

Expand Down

0 comments on commit 5ea7e3b

Please sign in to comment.