How Can I Enable Multiple Users In a Handler Fuzz test? #350
Answered
by
EngrPips
TobechukwuAzogu
asked this question in
Q&A
-
Sorry, I need help with enabling multiple users in a Handler Fuzz test. In the TSwap section of the course, Partrick for the sake of the lesson, restricted the fuzz test to use just one user. How can I use multiple? |
Beta Was this translation helpful? Give feedback.
Answered by
EngrPips
Jun 10, 2025
Replies: 1 comment 2 replies
-
If you mean you want a different address to call functions in your |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
TobechukwuAzogu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you mean you want a different address to call functions in your
Handler
contract, then you can passaddress
in the functions in yourHandler
contract, and you would need to handle the use of random addresses as required by your Implementation contract.