File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ func (api *ConsensusAPI) ForkchoiceUpdatedV3(update engine.ForkchoiceStateV1, pa
231
231
return engine .STATUS_INVALID , attributesErr ("missing withdrawals" )
232
232
case params .BeaconRoot == nil :
233
233
return engine .STATUS_INVALID , attributesErr ("missing beacon root" )
234
- case ! api .checkFork (params .Timestamp , forks .Cancun , forks .Prague ):
234
+ case ! api .checkFork (params .Timestamp , forks .Cancun , forks .Prague , forks . Osaka ):
235
235
return engine .STATUS_INVALID , unsupportedForkErr ("fcuV3 must only be called for cancun or prague payloads" )
236
236
}
237
237
}
@@ -550,7 +550,7 @@ func (api *ConsensusAPI) NewPayloadV4(params engine.ExecutableData, versionedHas
550
550
return invalidStatus , paramsErr ("nil beaconRoot post-cancun" )
551
551
case executionRequests == nil :
552
552
return invalidStatus , paramsErr ("nil executionRequests post-prague" )
553
- case ! api .checkFork (params .Timestamp , forks .Prague ):
553
+ case ! api .checkFork (params .Timestamp , forks .Prague , forks . Osaka ):
554
554
return invalidStatus , unsupportedForkErr ("newPayloadV3 must only be called for cancun payloads" )
555
555
}
556
556
requests := convertRequests (executionRequests )
You can’t perform that action at this time.
0 commit comments