diff --git a/consensus/misc/eip4844/eip4844.go b/consensus/misc/eip4844/eip4844.go index 359d5e03ac..af3f3ace6a 100644 --- a/consensus/misc/eip4844/eip4844.go +++ b/consensus/misc/eip4844/eip4844.go @@ -74,7 +74,7 @@ func latestBlobConfig(cfg *params.ChainConfig, time uint64) *BlobConfig { case cfg.IsBPO1(london, time) && s.BPO1 != nil: bc = s.BPO1 case cfg.IsAmsterdam(london, time) && s.Amsterdam != nil: - bc = s.BPO1 + bc = s.Amsterdam case cfg.IsOsaka(london, time) && s.Osaka != nil: bc = s.Osaka case cfg.IsPrague(london, time) && s.Prague != nil: diff --git a/core/block_access_list_tracer.go b/core/block_access_list_tracer.go index 353a208b6d..e3d09949e8 100644 --- a/core/block_access_list_tracer.go +++ b/core/block_access_list_tracer.go @@ -9,12 +9,6 @@ import ( "math/big" ) -type accountPrestate struct { - balance *uint256.Int - nonce *uint64 - code []byte -} - // BlockAccessListTracer is a tracer which gathers state accesses/mutations // from the execution of a block. It is used for constructing and verifying // EIP-7928 block access lists.