We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Description
This Error occurs when calling RecordBlobBaseFee() while running the op-batcher.
RecordBlobBaseFee()
The normal call is as follows:
normal call
if tip.ExcessBlobGas != nil { blobFee := eip4844.CalcBlobFee(*tip.ExcessBlobGas) m.metr.RecordBlobBaseFee(blobFee) }
but panic call as follows :
panic call
# xx/optimism/op-service/txmgr/txmgr.go:896 m.metr.RecordTipCap(tip) m.metr.RecordBaseFee(baseFee) m.metr.RecordBlobBaseFee(blobFee)
func (t *TxMetrics) RecordBlobBaseFee(blobBaseFee *big.Int) { bff, _ := blobBaseFee.Float64() t.blobBaseFee.Set(bff) }
Steps to Reproduce Run an op-reth as the l2 execution client, and then run op-batcher
Expected behavior
Environment Information:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Description
This Error occurs when calling
RecordBlobBaseFee()
while running the op-batcher.The
normal call
is as follows:but
panic call
as follows :Steps to Reproduce
Run an op-reth as the l2 execution client, and then run op-batcher
Expected behavior
Environment Information:
The text was updated successfully, but these errors were encountered: