Skip to content

Commit

Permalink
Update op-node/eth/output.go
Browse files Browse the repository at this point in the history
Co-authored-by: protolambda <[email protected]>
  • Loading branch information
Inphi and protolambda authored Jul 28, 2023
1 parent 4341282 commit e365a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-node/eth/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func UnmarshalOutput(data []byte) (Output, error) {
}

func unmarshalOutputV0(data []byte) (*OutputV0, error) {
if len(data) < 128 {
if len(data) != 128 {
return nil, ErrInvalidOutput
}
var output OutputV0
Expand Down

0 comments on commit e365a39

Please sign in to comment.