Skip to content

Commit

Permalink
drop another redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
abi87 committed Oct 14, 2024
1 parent 18245a7 commit c470739
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mod/execution/pkg/client/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
"github.com/berachain/beacon-kit/mod/errors"
ethclient "github.com/berachain/beacon-kit/mod/execution/pkg/client/ethclient"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/version"
)

/* -------------------------------------------------------------------------- */
Expand Down Expand Up @@ -160,7 +159,7 @@ func (s *EngineClient[
if result == nil {
return result, engineerrors.ErrNilExecutionPayloadEnvelope
}
if (forkVersion >= version.Deneb) && result.GetBlobsBundle() == nil {
if result.GetBlobsBundle() == nil {
return result, engineerrors.ErrNilBlobsBundle
}

Expand Down

0 comments on commit c470739

Please sign in to comment.