-
Notifications
You must be signed in to change notification settings - Fork 22
Auction4Reputation.sol : Fix time restriction. #607
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
Conversation
IERC20 _token, | ||
address _wallet) | ||
external | ||
onlyOwner |
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.
Just curious: What is the use case for removing this?
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.
initialize function can be called one time only .
So no need to set onlyOwner
|
||
contract UniversalSchemeInterface { | ||
|
||
function updateParameters(bytes32 _hashedParameters) public; |
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.
Removing this function appears to address #387.
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.
right
hashedParameters = _hashedParameters; | ||
} | ||
|
||
contract UniversalScheme is UniversalSchemeInterface { |
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.
So all schemes are affected, not just the bootstrapping.
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.
right
Remove redundant ownership at rep schemes and universal schemes.
resolve #387