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 1ad7063 commit d5c724bCopy full SHA for d5c724b
eth/catalyst/api.go
@@ -697,9 +697,6 @@ func (api *ConsensusAPI) NewPayloadV5(params engine.ExecutableData, versionedHas
697
if executionRequests == nil {
698
return engine.PayloadStatusV1{Status: engine.INVALID}, engine.InvalidParams.With(errors.New("nil executionRequests post-prague"))
699
}
700
- if inclusionList == nil {
701
- return engine.PayloadStatusV1{Status: engine.INVALID}, engine.InvalidParams.With(errors.New("nil inclusionList post-prague"))
702
- }
703
704
if api.eth.BlockChain().Config().LatestFork(params.Timestamp) != forks.Prague {
705
return engine.PayloadStatusV1{Status: engine.INVALID}, engine.UnsupportedFork.With(errors.New("newPayloadV5 must only be called for prague payloads"))
0 commit comments