From e4d6eeb9a3085b6eb7b368ac2730097ba3710c36 Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Wed, 1 Jul 2026 11:04:59 +0200 Subject: [PATCH] happy lint, happy life --- core/eip8246_test.go | 3 --- core/vm/eip8037_test.go | 3 --- 2 files changed, 6 deletions(-) diff --git a/core/eip8246_test.go b/core/eip8246_test.go index 2fd39e3d44..18049d2279 100644 --- a/core/eip8246_test.go +++ b/core/eip8246_test.go @@ -49,9 +49,6 @@ func TestEIP8246SelfdestructNoBurn(t *testing.T) { // TODO: drop this hacky Amsterdam config initialization once the final // Amsterdam config is available (mirrors TestEthTransferLogs). config.AmsterdamTime = new(uint64) - blobConfig := *config.BlobScheduleConfig - blobConfig.Amsterdam = blobConfig.Osaka - config.BlobScheduleConfig = &blobConfig gspec := &Genesis{ Config: &config, diff --git a/core/vm/eip8037_test.go b/core/vm/eip8037_test.go index 658096d228..07f0099207 100644 --- a/core/vm/eip8037_test.go +++ b/core/vm/eip8037_test.go @@ -45,9 +45,6 @@ var ( func amsterdam8037Config() *params.ChainConfig { cfg := *params.MergedTestChainConfig cfg.AmsterdamTime = new(uint64) - blob := *cfg.BlobScheduleConfig - blob.Amsterdam = blob.Osaka - cfg.BlobScheduleConfig = &blob return &cfg }