Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
calbera committed Dec 19, 2024
1 parent f37e71b commit 2a70e1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon/blockchain/init_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ func (s *Service[
genesisData.GetDeposits(),
genesisData.GetExecutionPayloadHeader(),
genesisData.GetForkVersion(),
); err != nil {
)
if err != nil {
return nil, err
}

Expand All @@ -59,4 +60,3 @@ func (s *Service[

return validatorUpdates, nil
}

0 comments on commit 2a70e1b

Please sign in to comment.