Skip to content

Commit

Permalink
fixed arg name
Browse files Browse the repository at this point in the history
  • Loading branch information
mudgen committed Sep 26, 2020
1 parent a24f876 commit 7fa2351
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Diamond.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import "./facets/DiamondLoupeFacet.sol";
contract Diamond {
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

constructor(address _owner, IDiamondCut.FacetCut[] memory diamondCut) payable {
LibDiamondCut.diamondCut(diamondCut, address(0), new bytes(0));
constructor(address _owner, IDiamondCut.FacetCut[] memory _diamondCut) payable {
LibDiamondCut.diamondCut(_diamondCut, address(0), new bytes(0));

LibDiamondStorage.DiamondStorage storage ds = LibDiamondStorage.diamondStorage();
ds.contractOwner = _owner;
Expand Down

0 comments on commit 7fa2351

Please sign in to comment.