Skip to content

Commit

Permalink
Update consensus/misc/eip1559.go
Browse files Browse the repository at this point in the history
Co-authored-by: HAOYUatHZ <[email protected]>
  • Loading branch information
omerfirmak and 0xmountaintop authored Jul 31, 2024
1 parent cd36433 commit 131820e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions consensus/misc/eip1559.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ func CalcBaseFee(config *params.ChainConfig, parent *types.Header, parentL1BaseF
if config.Clique != nil && config.Clique.ShadowForkHeight != 0 && parent.Number.Uint64() >= config.Clique.ShadowForkHeight {
return big.NewInt(10000000) // 0.01 Gwei
}
l2SequencerFee := big.NewInt(10000000) // 0.01 Gwei
provingFee := big.NewInt(140000000) // 0.14 Gwei
l2SequencerFee := big.NewInt(1000000) // 0.001 Gwei
provingFee := big.NewInt(47700000) // 0.0477 Gwei

// L1_base_fee * 0.0046
verificationFee := parentL1BaseFee
Expand Down

0 comments on commit 131820e

Please sign in to comment.