diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index 1eb70bd34e..e4401fd9c6 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -495,7 +495,7 @@ func (api *ConsensusAPI) GetBlobsV1(hashes []common.Hash) ([]*engine.BlobAndProo // Check if Osaka fork is active // follow https://github.com/ethereum/execution-apis/blob/main/src/engine/osaka.md#cancun-api if header := api.eth.BlockChain().CurrentHeader(); api.config().IsOsaka(header.Number, header.Time) { - return nil, engine.UnsupportedFork.With(fmt.Errorf("engine_getBlobsV1 is not supported after Osaka fork activation")) + return nil, unsupportedForkErr("engine_getBlobsV1 is not supported after Osaka fork") } if len(hashes) > 128 {