aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/gnosis/Oracles/Oracle.sol
blob: 450aff001419afd7baf017d31faa81f9a6c57954 (plain) (blame)
1
2
3
4
5
6
7
8
9
pragma solidity ^0.4.11;


/// @title Abstract oracle contract - Functions to be implemented by oracles
contract Oracle {

    function isOutcomeSet() public view returns (bool);
    function getOutcome() public view returns (int);
}