Skip to content

Commit

Permalink
refactor: moved files into governance folder
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Oct 24, 2023
1 parent c7ae989 commit da10b35
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.8;

import {CheckpointsUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/CheckpointsUpgradeable.sol";

import {_uncheckedAdd, _uncheckedSub} from "../utils/math/UncheckedMath.sol";
import {_uncheckedAdd, _uncheckedSub} from "../../utils/math/UncheckedMath.sol";

/// @title Addresslist
/// @author Aragon Association - 2021-2023
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pragma solidity ^0.8.8;

import {Addresslist} from "../../utils/Addresslist.sol";
import {Addresslist} from "../../governance/membership/Addresslist.sol";

contract AddresslistMock is Addresslist {
function addAddresses(address[] calldata _newAddresses) external {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.8;

import {IDAO} from "@aragon/osx/packages/contracts/src/core/dao/IDAO.sol";

import {MajorityVotingBase} from "../../plugin/majority-voting/MajorityVotingBase.sol";
import {MajorityVotingBase} from "../../governance/majority-voting/MajorityVotingBase.sol";

contract MajorityVotingMock is MajorityVotingBase {
function initializeMock(IDAO _dao, VotingSettings calldata _votingSettings) public initializer {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/test/token/TestGovernanceERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.8;

import {IDAO} from "@aragon/osx/packages/contracts/src/core/dao/IDAO.sol";

import {GovernanceERC20} from "../../token/erc20/GovernanceERC20.sol";
import {GovernanceERC20} from "../../governance/token/erc20/GovernanceERC20.sol";

/// @title TestGovernanceERC20
/// @author Aragon Association - 2022-2023
Expand Down

0 comments on commit da10b35

Please sign in to comment.