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

10 lines
257 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
2019-10-23 20:10:12 +00:00
abstract contract Oracle {
2017-07-12 13:46:33 +00:00
2019-11-05 17:25:34 +00:00
function isOutcomeSet() virtual public view returns (bool);
function getOutcome() virtual public view returns (int);
2017-07-12 13:46:33 +00:00
}