solidity/test/compilationTests/gnosis/Oracles/Oracle.sol

10 lines
232 B
Solidity
Raw Normal View History

2018-10-24 12:52:11 +00:00
pragma solidity >=0.0;
2017-07-12 13:46:33 +00:00
/// @title Abstract oracle contract - Functions to be implemented by oracles
contract Oracle {
2018-07-02 09:14:28 +00:00
function isOutcomeSet() public view returns (bool);
function getOutcome() public view returns (int);
2017-07-12 13:46:33 +00:00
}