Beginner FriendlySolidity
100 EXP
View results
Submission Details
Severity: low
Invalid

Incorrect spelling

Summary

In the src/InheritanceManager.sol contract, the addBeneficiery function is incorrectly spelt

Vulnerability Details

```

*** function addBeneficiery(address _beneficiary) external onlyOwner {
beneficiaries.push(_beneficiary);
_setDeadline();
}

Impact

This is more of an informational issue but it can become one during a debug session when the frontend team have to fetch data

Tools Used

Manual review

Recommendations

-- function addBeneficiery(address _beneficiary) external onlyOwner {
beneficiaries.push(_beneficiary);
_setDeadline();
}
++ function addBeneficiary(address _beneficiary) external onlyOwner {
beneficiaries.push(_beneficiary);
_setDeadline();
}
Updates

Lead Judging Commences

0xtimefliez Lead Judge 6 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.