Commit e365a39a authored by Inphi's avatar Inphi Committed by GitHub

Update op-node/eth/output.go

Co-authored-by: default avatarprotolambda <proto@protolambda.com>
parent 43412820
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment