solidity/test/compilationTests/gnosis/Oracles/Oracle.sol
2018-10-24 14:52:55 +02:00

10 lines
232 B
Solidity

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);
}