Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion beacon_chain/nimbus_beacon_node.nim
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ proc init*(T: type BeaconNode,
withState(dag.headState):
getValidator(forkyState().data.validators.asSeq(), pubkey)

func getCapellaForkVersion(): Opt[Version] =
func getCapellaForkVersion(): Opt[presets.Version] =
Opt.some(cfg.CAPELLA_FORK_VERSION)

func getDenebForkEpoch(): Opt[Epoch] =
Expand Down
2 changes: 1 addition & 1 deletion beacon_chain/validators/beacon_validators.nim
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ proc makeBeaconBlockForHeadAndSlot*(
slot, head = shortLog(head), error
$error

var blobsBundleOpt = Opt.none(BlobsBundle)
var blobsBundleOpt = Opt.none(deneb.BlobsBundle)
when typeof(payload).kind >= ConsensusFork.Deneb:
blobsBundleOpt = Opt.some(payload.blobsBundle)

Expand Down