happy lint, happy life

This commit is contained in:
MariusVanDerWijden 2026-07-01 11:04:59 +02:00
parent 0c2d29fc7f
commit e4d6eeb9a3
No known key found for this signature in database
2 changed files with 0 additions and 6 deletions

View file

@ -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,

View file

@ -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
}