We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
research-hunt-contract/contracts/research_hunt.vy
Lines 321 to 325 in d9d070f
assert not self.requests[_uuid].reporters[index] == msg.sender は
assert not self.requests[_uuid].reporters[index] == msg.sender
Line 173 in d9d070f
assert self.requests[_uuid].reporterApprovements[index] は #15 の対応をすればそもそもapproveされないとsubmitが出来ない。 (#15 の対応をしないならばこれは必要。)
assert self.requests[_uuid].reporterApprovements[index]
assert not self.requests[_uuid].reports[index] == EMPTY_BYTES32 は
assert not self.requests[_uuid].reports[index] == EMPTY_BYTES32
Lines 313 to 314 in d9d070f
EMPTY_BYTES32
The text was updated successfully, but these errors were encountered:
No branches or pull requests
research-hunt-contract/contracts/research_hunt.vy
Lines 321 to 325 in d9d070f
この辺って必要なんでしたっけ?
assert not self.requests[_uuid].reporters[index] == msg.sender
はresearch-hunt-contract/contracts/research_hunt.vy
Line 173 in d9d070f
でそもそもapplyがowner以外でないと出来ない。
assert self.requests[_uuid].reporterApprovements[index]
は#15 の対応をすればそもそもapproveされないとsubmitが出来ない。
(#15 の対応をしないならばこれは必要。)
assert not self.requests[_uuid].reports[index] == EMPTY_BYTES32
はresearch-hunt-contract/contracts/research_hunt.vy
Lines 313 to 314 in d9d070f
ここでreportが
EMPTY_BYTES32
の場合はcontinueにしているのでいつもTrueになるThe text was updated successfully, but these errors were encountered: