Skip to content

Commit 849c795

Browse files
authored
Merge branch 'master' into backend_filter_recover
2 parents 94a7254 + da910f8 commit 849c795

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

consensus/misc/eip4844/eip4844.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ func CalcExcessBlobGas(config *params.ChainConfig, parent *types.Header, headTim
8181

8282
// CalcBlobFee calculates the blobfee from the header's excess blob gas field.
8383
func CalcBlobFee(config *params.ChainConfig, header *types.Header) *big.Int {
84+
if config.IsArbitrum() {
85+
// Arbitrum does not support blob transactions, so we return 0.
86+
return big.NewInt(0)
87+
}
8488
var frac uint64
8589
switch config.LatestFork(header.Time, types.DeserializeHeaderExtraInformation(header).ArbOSFormatVersion) {
8690
case forks.Osaka:

0 commit comments

Comments
 (0)