mirror of https://github.com/embarklabs/embark.git
16 lines
416 B
Solidity
16 lines
416 B
Solidity
pragma solidity >=0.5.0 <0.6.0;
|
|
|
|
|
|
/**
|
|
* @title Medianizer Mock Contract
|
|
*/
|
|
contract Medianizer {
|
|
function peek() public view returns (bytes32, bool) {
|
|
return (bytes32(0x000000000000000000000000000000000000000000000008c233113a8becc000), true);
|
|
}
|
|
|
|
function read() public view returns (bytes32) {
|
|
return bytes32(0x000000000000000000000000000000000000000000000008c233113a8becc000);
|
|
}
|
|
}
|