Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
marktoda committed Dec 12, 2023
1 parent 55826f3 commit a5cb865
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/base/ProtocolFees.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ abstract contract ProtocolFees is Owned {

// apply fee outputs
// fill new outputs with old outputs
OutputToken[] memory newOutputs = new OutputToken[](
outputsLength + feeOutputsLength
);
OutputToken[] memory newOutputs = new OutputToken[](outputsLength + feeOutputsLength);

unchecked {
for (uint256 i = 0; i < outputsLength; i++) {
Expand Down

0 comments on commit a5cb865

Please sign in to comment.