Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(certora): exclude
stake()
from rule that checks account balance
change The rule is failing since we've removed the `lockUntil > 0` check in `stake` and `processAccount` is no longer used in `stake()`. The rule requires `lockUntil > 0` so it will always fail there and can't find a non-reverting cases (which makes the rule pass). The reason it hasn't happened before was because: The rule required account.lockUntil > 0 Stake required lockUntil > 0 || account balance == 0
- Loading branch information