aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/gnosis/Oracles/Oracle.sol
blob: 835d889eeb962fb28b15c3a0aee171ac8a0501d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
pragma solidity >=0.0;


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

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