From c2c24ea183bf8c2d4165c6b5d42dbc83e8e11450 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 17 Feb 2026 13:42:51 +0100 Subject: [PATCH] core: gofmt --- core/state_processor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/state_processor.go b/core/state_processor.go index 9954ec5240..3d4b346a30 100644 --- a/core/state_processor.go +++ b/core/state_processor.go @@ -135,7 +135,7 @@ func (p *StateProcessor) Process(ctx context.Context, block *types.Block, stated func postExecution(ctx context.Context, config *params.ChainConfig, block *types.Block, allLogs []*types.Log, evm *vm.EVM) (requests [][]byte, err error) { _, _, spanEnd := telemetry.StartSpan(ctx, "core.postExecution") defer spanEnd(&err) - + // Read requests if Prague is enabled. if config.IsPrague(block.Number(), block.Time()) { var requests [][]byte @@ -152,7 +152,7 @@ func postExecution(ctx context.Context, config *params.ChainConfig, block *types return nil, fmt.Errorf("failed to process consolidation queue: %w", err) } } - + return requests, nil }