mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Gnosis compilation contracts.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
pragma solidity ^0.4.11;
|
||||
import "../Oracles/DifficultyOracle.sol";
|
||||
|
||||
|
||||
/// @title Difficulty oracle factory contract - Allows to create difficulty oracle contracts
|
||||
/// @author Stefan George - <stefan@gnosis.pm>
|
||||
contract DifficultyOracleFactory {
|
||||
|
||||
/*
|
||||
* Events
|
||||
*/
|
||||
event DifficultyOracleCreation(address indexed creator, DifficultyOracle difficultyOracle, uint blockNumber);
|
||||
|
||||
/*
|
||||
* Public functions
|
||||
*/
|
||||
/// @dev Creates a new difficulty oracle contract
|
||||
/// @param blockNumber Target block number
|
||||
/// @return Oracle contract
|
||||
function createDifficultyOracle(uint blockNumber)
|
||||
public
|
||||
returns (DifficultyOracle difficultyOracle)
|
||||
{
|
||||
difficultyOracle = new DifficultyOracle(blockNumber);
|
||||
DifficultyOracleCreation(msg.sender, difficultyOracle, blockNumber);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user