Skip to content

Commit

Permalink
Debug logs: MUST be removed 2
Browse files Browse the repository at this point in the history
  • Loading branch information
syjn99 committed Dec 2, 2024
1 parent d8437ef commit ae81168
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion http/signedbeaconblock.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (s *Service) signedBeaconBlockFromSSZ(ctx context.Context,
err = response.Data.Electra.UnmarshalSSZ(res.body)
}
if err != nil {
return nil, errors.Join(errors.New("failed to decode electra signed block contents, customSpecSupport: " + fmt.Sprintf("%v", s.customSpecSupport)), err)
return nil, errors.Join(errors.New("failed to decode electra signed block contents"), err)
}
default:
return nil, fmt.Errorf("unhandled block version %s", res.consensusVersion)
Expand Down
5 changes: 4 additions & 1 deletion spec/electra/beaconblock_ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion spec/electra/beaconblockbody_ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion spec/electra/signedbeaconblock_ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ae81168

Please sign in to comment.