File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,12 +25,15 @@ import (
2525 "github.com/ethereum/go-ethereum/core/vm"
2626)
2727
28+ // Fuzz is the fuzzing entry-point.
2829// The function must return
29- // 1 if the fuzzer should increase priority of the
30- // given input during subsequent fuzzing (for example, the input is lexically
31- // correct and was parsed successfully);
32- // -1 if the input must not be added to corpus even if gives new coverage; and
33- // 0 otherwise
30+ //
31+ // - 1 if the fuzzer should increase priority of the
32+ // given input during subsequent fuzzing (for example, the input is lexically
33+ // correct and was parsed successfully);
34+ // - -1 if the input must not be added to corpus even if gives new coverage; and
35+ // - 0 otherwise
36+ //
3437// other values are reserved for future use.
3538func Fuzz (input []byte ) int {
3639 if len (input ) <= 96 {
You can’t perform that action at this time.
0 commit comments