Skip to content

Commit

Permalink
i++ -> ++i
Browse files Browse the repository at this point in the history
  • Loading branch information
MickdeGraaf committed Feb 22, 2024
1 parent 48bdeef commit afc850a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FeeFlowController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ contract FeeFlowController is MinimalEVCClient {
paymentToken.safeTransferFrom(sender, paymentReceiver, paymentAmount);
}

for(uint256 i = 0; i < assets.length; i++) {
for(uint256 i = 0; i < assets.length; ++i) {
// Transfer full balance to buyer
uint256 balance = ERC20(assets[i]).balanceOf(address(this));
ERC20(assets[i]).safeTransfer(assetsReceiver, balance);
Expand Down

0 comments on commit afc850a

Please sign in to comment.