mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
Refactor error handling for GetBlobsV1 method
This commit is contained in:
parent
78bbbba4b5
commit
4fcd663a89
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,7 @@ func (api *ConsensusAPI) GetBlobsV1(hashes []common.Hash) ([]*engine.BlobAndProo
|
||||||
// Check if Osaka fork is active
|
// Check if Osaka fork is active
|
||||||
// follow https://github.com/ethereum/execution-apis/blob/main/src/engine/osaka.md#cancun-api
|
// 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) {
|
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 {
|
if len(hashes) > 128 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue