Skip to content

Commit

Permalink
Move base contracts under infrastructure folder as they're only relev…
Browse files Browse the repository at this point in the history
…ant and used there
  • Loading branch information
elenadimitrova committed May 6, 2020
1 parent 6f04028 commit 6002414
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion contracts/infrastructure/CompoundRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

pragma solidity ^0.5.4;
import "../base/Owned.sol";
import "./base/Owned.sol";

/**
* @title CompoundRegistry
Expand Down
2 changes: 1 addition & 1 deletion contracts/infrastructure/MakerRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pragma solidity ^0.5.4;
import "../base/Owned.sol";
import "./base/Owned.sol";
import "../../lib/maker/MakerInterfaces.sol";

/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/infrastructure/ModuleRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

pragma solidity ^0.5.4;
import "../base/Owned.sol";
import "./base/Owned.sol";
import "../../lib/other/ERC20.sol";

/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/infrastructure/TokenPriceProvider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
pragma solidity ^0.5.4;
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "../../lib/other/ERC20.sol";
import "../base/Managed.sol";
import "./base/Managed.sol";

contract TokenPriceProvider is Managed {
using SafeMath for uint256;
Expand Down
4 changes: 2 additions & 2 deletions contracts/infrastructure/WalletFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
pragma solidity ^0.5.4;
import "../wallet/Proxy.sol";
import "../wallet/BaseWallet.sol";
import "../base/Owned.sol";
import "../base/Managed.sol";
import "./base/Owned.sol";
import "./base/Managed.sol";
import "../infrastructure/ens/IENSManager.sol";
import "../infrastructure/ModuleRegistry.sol";
import "../modules/storage/IGuardianStorage.sol";
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion contracts/infrastructure/ens/ArgentENSManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import "../../../lib/utils/strings.sol";
import "./IENSManager.sol";
import "./ENSResolver.sol";
import "./ENSReverseRegistrar.sol";
import "../../base/Managed.sol";
import "../base/Managed.sol";

/**
* @title ArgentENSManager
Expand Down
4 changes: 2 additions & 2 deletions contracts/infrastructure/ens/ArgentENSResolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

pragma solidity ^0.5.4;
import "../../base/Owned.sol";
import "../../base/Managed.sol";
import "../base/Owned.sol";
import "../base/Managed.sol";
import "./ENSResolver.sol";

/**
Expand Down

0 comments on commit 6002414

Please sign in to comment.