chore(StakeVault.spec): comment out purposefully failing rule

This rule is only used for debugging purposes and serves no function for
production formal verification. Hence we're commenting it out.
This commit is contained in:
r4bbit 2024-03-04 10:12:41 +01:00 committed by Ricardo Guilherme Schmidt
parent e1bd0f31f8
commit 2343213e0d
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,10 @@ rule reachability(method f){
satisfy true;
}
/*
The rule below is commented out as it's merely used to easily have the
prover find all functions that change balances.
rule whoChangeERC20Balance(method f)
{
simplification();
@ -26,3 +30,4 @@ rule whoChangeERC20Balance(method f)
f(e,args);
assert before == staked.balanceOf(user);
}
*/