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

64 lines
1.5 KiB
Solidity
Raw Normal View History

2017-07-12 13:46:33 +00:00
pragma solidity ^0.4.11;
import "../Oracles/Oracle.sol";
/// @title Difficulty oracle contract - Oracle to resolve difficulty events at given block
/// @author Stefan George - <stefan@gnosis.pm>
contract DifficultyOracle is Oracle {
/*
* Events
*/
event OutcomeAssignment(uint difficulty);
/*
* Storage
*/
uint public blockNumber;
uint public difficulty;
/*
* Public functions
*/
/// @dev Contract constructor validates and sets target block number
/// @param _blockNumber Target block number
constructor(uint _blockNumber)
2017-07-12 13:46:33 +00:00
public
{
// Block has to be in the future
require(_blockNumber > block.number);
blockNumber = _blockNumber;
}
/// @dev Sets difficulty as winning outcome for specified block
function setOutcome()
public
{
// Block number was reached and outcome was not set yet
require(block.number >= blockNumber && difficulty == 0);
difficulty = block.difficulty;
2018-06-27 08:35:38 +00:00
emit OutcomeAssignment(difficulty);
2017-07-12 13:46:33 +00:00
}
/// @dev Returns if difficulty is set
/// @return Is outcome set?
function isOutcomeSet()
public
constant
returns (bool)
{
// Difficulty is always bigger than 0
return difficulty > 0;
}
/// @dev Returns difficulty
/// @return Outcome
function getOutcome()
public
constant
returns (int)
{
return int(difficulty);
}
}