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