Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iainnash committed Sep 28, 2023
1 parent ba5e713 commit 47b6c85
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/upgrades/UpgradeGate.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ import {UpgradeGateStorageV1} from "./UpgradeGateStorageV1.sol";
/// @notice Contract for managing upgrades and safe upgrade paths for 1155 contracts
contract UpgradeGate is IUpgradeGate, Ownable2StepUpgradeable, UpgradeGateStorageV1 {
/// @notice Constructor for deployment pathway. This contract needs to be atomically initialized to be safe.
constructor() {
}
constructor() {}

/// @notice Default owner initializer. Allows for shared deterministic addresses.
/// @notice Default owner initializer. Allows for shared deterministic addresses.
/// @param _initialOwner initial owner for the contract
function initialize(address _initialOwner) external initializer {
__Ownable_init(_initialOwner);
Expand Down

0 comments on commit 47b6c85

Please sign in to comment.