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 tier fee in deep copy (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoGhurt111 committed May 3, 2024
1 parent b41379e commit 90411c9
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 @@ -100,7 +100,7 @@ func (s *ETHFeeEOASelector) AssignProver(

// Deep copy the tierFees slice.
for i, fee := range tierFees {
fees[i] = encoding.TierFee{Tier: fee.Tier, Fee: fee.Fee}
fees[i] = encoding.TierFee{Tier: fee.Tier, Fee: new(big.Int).Set(fee.Fee)}
}

// Iterate over each configured endpoint, and see if someone wants to accept this block.
Expand Down

0 comments on commit 90411c9

Please sign in to comment.