We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7667ab2 commit 7ba7b57Copy full SHA for 7ba7b57
eth/catalyst/api.go
@@ -709,9 +709,6 @@ func (api *ConsensusAPI) NewPayloadV5(params engine.ExecutableData, versionedHas
709
if executionRequests == nil {
710
return engine.PayloadStatusV1{Status: engine.INVALID}, engine.InvalidParams.With(errors.New("nil executionRequests post-prague"))
711
}
712
- if inclusionList == nil {
713
- return engine.PayloadStatusV1{Status: engine.INVALID}, engine.InvalidParams.With(errors.New("nil inclusionList post-prague"))
714
- }
715
716
if api.eth.BlockChain().Config().LatestFork(params.Timestamp) != forks.Prague {
717
return engine.PayloadStatusV1{Status: engine.INVALID}, engine.UnsupportedFork.With(errors.New("newPayloadV5 must only be called for prague payloads"))
0 commit comments