Skip to content

Commit

Permalink
Add missing implementation point.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheatfate committed Oct 3, 2023
1 parent dd32213 commit ba293fe
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions beacon_chain/validators/beacon_validators.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1929,10 +1929,11 @@ proc makeBeaconBlockForHeadAndSlotV3*(
blindedResult = collectedBids.payloadBuilderBidFut.read()
blindedBlock = blindedResult.get().blindedBlckPart.message
payloadValue = blindedResult.get().blockValue

return Result[ForkedAndBlindedBeaconBlock, string].ok(
ForkedAndBlindedBeaconBlock.init(
blindedBlock, Opt.some(payloadValue), Opt.none(UInt256)))
return Result[ForkedAndBlindedBeaconBlock, string].err(
"Implementation is missing")
# return Result[ForkedAndBlindedBeaconBlock, string].ok(
# ForkedAndBlindedBeaconBlock.init(
# blindedBlock, Opt.some(payloadValue), Opt.none(UInt256)))
else:
collectedBids.engineBlockFut.read().get()

Expand Down

0 comments on commit ba293fe

Please sign in to comment.