Skip to content

Commit

Permalink
feat(backed-up-arbitrator): implement constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Sep 15, 2018
1 parent a33b11d commit ba65384
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions contracts/standard/arbitration/BackedUpArbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,14 @@ contract BackedUpArbitrator is CentralizedArbitrator, Arbitrable {
Arbitrator public backUp;
mapping(uint => uint) public creationTimes;

/* Modifiers */



/* Constructor */



/* Fallback */


/** @dev Constructs the BackedUpArbitrator contract.
* @param _backUp The back up arbitrator.
*/
constructor(Arbitrator _backUp) public {
backUp = _backUp;
}

/* External */

Expand Down

0 comments on commit ba65384

Please sign in to comment.