replaced burn with generic function

This commit is contained in:
Michael George
2022-05-26 14:46:14 -04:00
parent da1cda69bf
commit 657a051062

View File

@ -9,8 +9,8 @@ rule onlyApprovedCanReduceBalance {
address holder; uint256 token; uint256 amount;
uint256 balanceBefore = balanceOf(holder, token);
env e;
burn(e, holder, token, amount); // TODO Replace burn with appropriate general function
method f; env e; calldataarg args;
f(e, args);
uint256 balanceAfter = balanceOf(holder, token);
@ -25,4 +25,4 @@ rule sanity {
assert false,
"This rule should always fail";
}
}