solidity/test/compilationTests/gnosis/Oracles/Oracle.sol
2019-11-01 14:54:47 -05:00

10 lines
241 B
Solidity

pragma solidity >=0.0;
/// @title Abstract oracle contract - Functions to be implemented by oracles
abstract contract Oracle {
function isOutcomeSet() public view returns (bool);
function getOutcome() public view returns (int);
}