Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
nisnislevi committed May 28, 2024
2 parents 8250553 + 463c9be commit 25e8b7d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions certora/specs/ccip.spec
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ rule withdrawLiquidity_correctness(env e) {
withdrawLiquidity(e, amount);
uint256 bal_after = erc20.balanceOf(e, currentContract);
// assert e.msg.sender == getRebalancer();
assert (to_mathint(bal_after) == bal_before - amount);
}
Expand All @@ -73,7 +72,6 @@ rule provideLiquidity_correctness(env e) {
provideLiquidity(e, amount);
uint256 bal_after = erc20.balanceOf(e, currentContract);
// assert e.msg.sender == getRebalancer();
assert (to_mathint(bal_after) == bal_before + amount);
}
Expand Down

0 comments on commit 25e8b7d

Please sign in to comment.