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
parent a90b730382
commit 50c8a11d5d
No known key found for this signature in database
GPG Key ID: E95F1E9447DC91A9

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);
}
*/