Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Certora I01 - Add recipient argument to settle... #786

Merged
merged 21 commits into from
Jul 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make sync external
  • Loading branch information
vimageDE committed Jul 10, 2024
commit 05c35fa2d76a0c279955ffa6760d6ff1bc0ad8cb
2 changes: 1 addition & 1 deletion src/PoolManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ contract PoolManager is IPoolManager, ProtocolFees, NoDelegateCall, ERC6909Claim
}

/// @inheritdoc IPoolManager
function sync(Currency currency) public {
function sync(Currency currency) external {
Reserves.checkSync();
if (currency.isNative()) return;
uint256 balance = currency.balanceOfSelf();
Expand Down
Loading