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 @@ -229,7 +229,7 @@ func (api *ConsensusAPI) ForkchoiceUpdatedV3(update engine.ForkchoiceStateV1, pa
229
229
return engine .STATUS_INVALID , attributesErr ("missing withdrawals" )
230
230
case params .BeaconRoot == nil :
231
231
return engine .STATUS_INVALID , attributesErr ("missing beacon root" )
232
- case ! api .checkFork (params .Timestamp , forks .Cancun , forks .Prague ):
232
+ case ! api .checkFork (params .Timestamp , forks .Cancun , forks .Prague , forks . Osaka ):
233
233
return engine .STATUS_INVALID , unsupportedForkErr ("fcuV3 must only be called for cancun or prague payloads" )
234
234
}
235
235
}
@@ -544,7 +544,7 @@ func (api *ConsensusAPI) NewPayloadV4(params engine.ExecutableData, versionedHas
544
544
return invalidStatus , paramsErr ("nil beaconRoot post-cancun" )
545
545
case executionRequests == nil :
546
546
return invalidStatus , paramsErr ("nil executionRequests post-prague" )
547
- case ! api .checkFork (params .Timestamp , forks .Prague ):
547
+ case ! api .checkFork (params .Timestamp , forks .Prague , forks . Osaka ):
548
548
return invalidStatus , unsupportedForkErr ("newPayloadV3 must only be called for cancun payloads" )
549
549
}
550
550
requests := convertRequests (executionRequests )
You can’t perform that action at this time.
0 commit comments