Skip to content

Commit

Permalink
Moved PrizeStrategyInterface into prize-strategy module
Browse files Browse the repository at this point in the history
  • Loading branch information
asselstine committed Jul 31, 2020
1 parent b7344ad commit 72a762e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/prize-pool/PrizePool.sol
Expand Up @@ -7,7 +7,7 @@ import "@opengsn/gsn/contracts/BaseRelayRecipient.sol";
import "@pooltogether/fixed-point/contracts/FixedPoint.sol";
import "@nomiclabs/buidler/console.sol";

import "./PrizeStrategyInterface.sol";
import "../prize-strategy/PrizeStrategyInterface.sol";
import "../token/ControlledToken.sol";
import "../token/TokenControllerInterface.sol";
import "../utils/MappedSinglyLinkedList.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/prize-strategy/PrizeStrategy.sol
Expand Up @@ -12,9 +12,9 @@ import "sortition-sum-tree-factory/contracts/SortitionSumTreeFactory.sol";
import "@pooltogether/uniform-random-number/contracts/UniformRandomNumber.sol";

import "./PrizeStrategyStorage.sol";
import "./PrizeStrategyInterface.sol";
import "../token/TokenControllerInterface.sol";
import "../token/ControlledToken.sol";
import "../prize-pool/PrizeStrategyInterface.sol";
import "../prize-pool/PrizePool.sol";
import "../Constants.sol";

Expand Down

0 comments on commit 72a762e

Please sign in to comment.