Replies: 4 comments 4 replies
-
Hello @sh0lt0 , so i had to go re-run a stateful fuzzing test that i had initially written and read the stack trace of all the transaction that was executed during the stateful fuzz and i found out that the contract was only set up once for me and the remaining calls was between the handler and the invariant test i wrote. i am not sure why your own stateful fuzz is setting up new contract on every run. thats unusual maybe you are not doing something right. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hey, thanks for your help, I think I need to rewatch the modules to get more clarity. |
Beta Was this translation helpful? Give feedback.
-
I always run the command with max verbosity but I never looked it from a different perspective, thanks for the enlightening. |
Beta Was this translation helpful? Give feedback.
-
Stateful fuzz runs based on the previous state, why is a new instance created on every run
testCon Contract; function setUp(){ testCon = new Contract();}
I tried commenting the creation of new instance but the test showed no test to fuzz.
Beta Was this translation helpful? Give feedback.
All reactions