Source code directives to ignore lines
// aderyn-ignore-next-line(centralization-risk, state-change-without-event)
function withdraw() external onlyOwner {
uint256 l = s_funders.length;
// aderyn-ignore-next-line(costly-loop)
for (uint256 funderIndex = 0; funderIndex < l; funderIndex++) {
address funder = s_funders[funderIndex];
delete s_addressToAmountFunded[funder];
}
...
} Last updated