Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Sep 23, 2024
1 parent b1dae21 commit 82887e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions spec/electra/beaconblockbody_json.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ func (b *BeaconBlockBody) MarshalJSON() ([]byte, error) {
}

// UnmarshalJSON implements json.Unmarshaler.
//
//nolint:gocyclo
func (b *BeaconBlockBody) UnmarshalJSON(input []byte) error {
raw, err := codecs.RawJSON(&beaconBlockBodyJSON{}, input)
if err != nil {
Expand Down
2 changes: 0 additions & 2 deletions spec/electra/executionrequests_json.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ func (e *ExecutionRequests) MarshalJSON() ([]byte, error) {
}

// UnmarshalJSON implements json.Unmarshaler.
//
//nolint:gocyclo
func (e *ExecutionRequests) UnmarshalJSON(input []byte) error {
raw, err := codecs.RawJSON(&executionRequestsJSON{}, input)
if err != nil {
Expand Down

0 comments on commit 82887e4

Please sign in to comment.