We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b1d88a commit bc0dc5bCopy full SHA for bc0dc5b
core/chain_makers.go
@@ -315,9 +315,9 @@ func (b *BlockGen) collectRequests(readonly bool) (requests [][]byte) {
315
statedb = statedb.Copy()
316
}
317
318
- blockContext := NewEVMBlockContext(b.header, b.cm, &b.header.Coinbase)
+ arbosVersion := types.DeserializeHeaderExtraInformation(b.header).ArbOSFormatVersion
319
// Arbitrum doesn't support Deposit, Withdrawal, or Consolidation requests.
320
- if !b.cm.config.IsArbitrum() && b.cm.config.IsPrague(b.header.Number, b.header.Time, blockContext.ArbOSVersion) {
+ if !b.cm.config.IsArbitrum() && b.cm.config.IsPrague(b.header.Number, b.header.Time, arbosVersion) {
321
requests = [][]byte{}
322
// EIP-6110 deposits
323
var blockLogs []*types.Log
0 commit comments