mirror of https://github.com/logos-co/staking.git
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:
parent
e1bd0f31f8
commit
2343213e0d
|
@ -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);
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue