aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/gnosis/Oracles/Oracle.sol
blob: cf96eb9f99d52a64dfd014fc3fad5a8c7390d750 (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 constant returns (bool);
    function getOutcome() public constant returns (int);
}