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

Commit

Permalink
fix(proposer): fix proposing fee initialization (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Sep 20, 2023
1 parent cc28d63 commit 2f2007d
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 @@ -96,7 +96,7 @@ func (s *ETHFeeEOASelector) AssignProver(
// If we do not find a prover, we can increase the fee up to a point, or give up.
for i := 0; i < int(s.proposalFeeIterations); i++ {
var (
fee = s.feeBase
fee = new(big.Int).Set(s.feeBase)
expiry = uint64(time.Now().Add(s.proposalExpiry).Unix())
)

Expand Down

0 comments on commit 2f2007d

Please sign in to comment.