Skip to content

Commit

Permalink
Move UUPSUpgradeable to proxy/utils
Browse files Browse the repository at this point in the history
(cherry picked from commit b912500)
  • Loading branch information
Amxx committed Apr 19, 2021
1 parent 2fa8673 commit 915109b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/mocks/UUPS/TestInProd.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity ^0.8.0;

import "../CountersImpl.sol";
import "../../proxy/UUPS/UUPSUpgradeable.sol";
import "../../proxy/utils/UUPSUpgradeable.sol";

contract UUPSUpgradeableMock is CountersImpl, UUPSUpgradeable {
// Not having any checks in this function is dangerous! Do not do this outside tests!
Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/ERC1967/ERC1967Upgrade.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.3;
pragma solidity ^0.8.2;

import "./ERC1967Storage.sol";

Expand Down
2 changes: 0 additions & 2 deletions contracts/proxy/utils/Initializable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
// solhint-disable-next-line compiler-version
pragma solidity ^0.8.0;

import "../../utils/Address.sol";

/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
Expand Down
File renamed without changes.

0 comments on commit 915109b

Please sign in to comment.