-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
contracts/oracle: manual whitelist #784
base: dev
Are you sure you want to change the base?
Conversation
@JuliusBrain can you help me with the JS tests? |
address[] private oraclePool; | ||
|
||
OraclePrice[] private prices; | ||
|
||
modifier onlyOracle { | ||
require(isOracle(msg.sender)); | ||
modifier onlyOracle(address oracle) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because the it's no longer the msg sender that registers himself. It's kowala
} | ||
//function registerOracle() public payable whenNotPaused onlyNewCandidate(identity) onlySuperNode { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we delete commented code?
} | ||
//function deregisterOracle() public whenNotPaused onlyOracle(msg.sender) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we delete commented code?
Closes #781