You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/contracts/Controller.sol
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ pragma solidity 0.4.18;
8
8
* Initially, Augur will have a “dev mode” that that can be enabled to allow Augur’s team to suicide funds, extract Ether or Tokens from a specific contract (in case funds inadvertently get sent somewhere they shouldn’t have), and update the Controller of a target contract to a new Controller. Eventually, the plan is to remove this mode so that this functionality will no longer be available to anyone, including the Augur team. At that point, the `owner` address will only be able to the `emergencyStop` and `release` functions.
9
9
*/
10
10
11
+
import'IAugur.sol';
11
12
import'IController.sol';
12
13
import'IControlled.sol';
13
14
import'libraries/token/ERC20Basic.sol';
@@ -178,8 +179,8 @@ contract Controller is IController {
178
179
* Helper functions
179
180
*/
180
181
181
-
function getAugur() publicviewreturns (Augur) {
182
-
returnAugur(lookup("Augur"));
182
+
function getAugur() publicviewreturns (IAugur) {
183
+
returnIAugur(lookup("Augur"));
183
184
}
184
185
185
186
function getTimestamp() publicviewreturns (uint256) {
0 commit comments