pragma solidity ^0.4.18; import './../node_modules/@josojo/realitytoken-contracts/contracts/ArbitratorData.sol'; import './RealityCheck.sol'; contract RealityCheckArbitrator is ArbitratorData { RealityCheck realityCheck; //Constructor sets the owner of the DataContract //@param additionalSupportedDapps adds a additional Dapps to the list of supported Dapps //@param noLongerSupportedDapps list of dapps, which should no longer supported function RealityCheckArbitrator(RealityCheck realityCheck_) public { owner = msg.sender; realityCheck = realityCheck_; } function notifyOfArbitrationRequest(bytes32 question_id, address requester, bytes32 branch) isOwner() public { realityCheck.notifyOfArbitrationRequest(question_id, requester, branch); } }