Skip to content

Commit

Permalink
Reduce base fee (#119)
Browse files Browse the repository at this point in the history
reduce base fee
  • Loading branch information
FletcherMan committed Jul 25, 2024
1 parent f76fe08 commit d800853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/misc/eip1559.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ func VerifyEip1559Header(config *params.ChainConfig, parent, header *types.Heade
// CalcBaseFee calculates the basefee of the header.
// TODO We will add extra cost into baseFee in the future, such as l1 fee for finalizing batch.
func CalcBaseFee(config *params.ChainConfig, parent *types.Header, parentL1BaseFee *big.Int) *big.Int {
l2SequencerFee := big.NewInt(10000000) // 0.01 Gwei
l2SequencerFee := big.NewInt(1000000) // 0.001 Gwei
return l2SequencerFee
}

0 comments on commit d800853

Please sign in to comment.