Skip to content

Commit

Permalink
run forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
burnto committed Jan 23, 2024
1 parent acfa909 commit bd32abe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PizzaFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ contract PizzaFactory {
* @param _shares The corresponding shares of each payee.
* @return pizza address of the newly created Pizza contract.
*/

function create(address[] memory _payees, uint256[] memory _shares) external returns (address pizza) {
pizza = address(Clones.clone(implementation));
IPizzaInitializer(pizza).initialize(_payees, _shares, 0);
Expand Down

0 comments on commit bd32abe

Please sign in to comment.