fn select_random_sender<S: FuzzStateReader>(
fuzz_state: &S,
senders: Rc<SenderFilters>,
dictionary_weight: u32,
) -> impl Strategy<Value = Address> + use<S>Expand description
Strategy to select a sender address:
- If
sendersis empty, then it’s either a random address (10%) or from the dictionary (90%). - If
sendersis not empty, a random address is chosen from the list of senders.