-
Notifications
You must be signed in to change notification settings - Fork 21
Add reputation token trade scheme #775
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
proposal.sendTokenAmount, | ||
proposal.reputationAmount | ||
); | ||
delete proposals[_proposalId]; |
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.
can delete proposal be moved out of the if and make it one time
onlyVotingMachine(_proposalId) | ||
override | ||
returns(bool) { | ||
Proposal memory proposal = proposals[_proposalId]; |
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.
unused var ?
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.
|
||
|
||
function execute(bytes32 _proposalId) public { | ||
Proposal storage proposal = proposals[_proposalId]; |
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 this is storage
?
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.
please fix lint https://travis-ci.org/github/daostack/arc/jobs/713284602#L1480
No description provided.