Skip to content

Commit

Permalink
fix(taiko-client): fix an address check in AssignProver (#17526)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Jun 8, 2024
1 parent 3f5b73d commit d6001d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (s *ETHFeeEOASelector) AssignProver(
}

spender := s.assignmentHookAddress
if s.proverSetAddress != rpc.ZeroAddress && s.proposerAddress == proverAddress {
if s.proverSetAddress != rpc.ZeroAddress && s.proverSetAddress == proverAddress {
spender = s.taikoL1Address
}

Expand Down

0 comments on commit d6001d3

Please sign in to comment.