Currently we do not support fuzzing structs that contains a map in its field. Thats' because map iteration is random, so this would break many fuzzing rules. For instance one input might give two different coverage.
However many devs rely on maps. One solution could be to still add it in our custom encode-decode system, but before encoding, we call sort to have a deterministic map. We still need to think about this approach, it has a lot of cons.
Currently we do not support fuzzing structs that contains a
mapin its field. Thats' because map iteration is random, so this would break many fuzzing rules. For instance one input might give two different coverage.However many devs rely on maps. One solution could be to still add it in our custom encode-decode system, but before encoding, we call
sortto have a deterministic map. We still need to think about this approach, it has a lot of cons.