This page contains more information on found vulnarabilities in the FundRequest contracts.
- @davyvanroy
- @Qkyrie
- @Pauliax
When you find a vulnerability, please create a pull request with more information as demonstrated below.
@Pauliax
Overall Risk Severity (see OWASP Risk Rating)
- Impact: Low
- Likelihood: Low
Fixes #45
@Pauliax
Overall Risk Severity (see OWASP Risk Rating)
- Impact: Low
- Likelihood: Low
function removePrecondition(uint _index) external onlyOwner {
if (_index >= preconditions.length) return;
for (uint i = _index; i < preconditions.length-1; i++) {
preconditions[i] = preconditions[i+1];
}
delete preconditions[preconditions.length-1];
preconditions.length--;
}