Last active
June 20, 2019 16:45
-
-
Save pedroduartecosta/757148680a7f010085d1e4fe509ca2bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.4.21 <0.6.0; | |
contract Oracle { | |
Request[] requests; //list of requests made to the contract | |
uint currentId = 0; //increasing request id | |
uint minQuorum = 2; //minimum number of responses to receive before declaring final result | |
uint totalOracleCount = 3; // Hardcoded oracle count | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment