Skip to content

Commit

Permalink
bet
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdevbear committed Jun 6, 2024
1 parent 46425fc commit a7f0802
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/beacon/validator/receive.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (s *Service[

// If the block is nil or a nil pointer, exit early.
if blk.IsNil() {
s.logger.Error(
s.logger.Warn(
"aborting block verification - beacon block not found in proposal 🚫 ",
)
return errors.WrapNonFatal(ErrNilBlk)
Expand Down Expand Up @@ -148,7 +148,7 @@ func (s *Service[
sidecars BlobSidecarsT,
) error {
if blk.IsNil() {
s.logger.Error(
s.logger.Warn(
"aborting blob verification - beacon block not found in proposal 🚫 ",
)
return errors.WrapNonFatal(ErrNilBlk)
Expand Down

0 comments on commit a7f0802

Please sign in to comment.