ca-lida / Class-Dao-Project

MIT License
4 stars 9 forks source link

Bool passed declaration shadows an existing declaration #24

Open YurenJeremyJin opened 8 months ago

YurenJeremyJin commented 8 months ago
169 bool passed = (100 * proposals[i].votes_for / ... ^^^^^^^^^^^ Note: The shadowed declaration is here: --> src/Governance.sol:167:13:
167 bool passed = false;

Seems like the after the “passed” being declared we should not declare another bool passed within the if..else loop