mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
242 B
Solidity
10 lines
242 B
Solidity
|
pragma solidity ^0.4.11;
|
||
|
|
||
|
|
||
|
/// @title Abstract oracle contract - Functions to be implemented by oracles
|
||
|
contract Oracle {
|
||
|
|
||
|
function isOutcomeSet() public constant returns (bool);
|
||
|
function getOutcome() public constant returns (int);
|
||
|
}
|