There is an embedded comment in lastDeposit mappings that expresses the label for the mappings key and value. but solidity supports naming mapping itself without comments, so there is no need to comment them.
mapping (uint/* id */ => uint/* block */) public lastDeposit;
Mitigation
remove comments.
- mapping (uint/* id */ => uint/* block */) public lastDeposit;
+ mapping (uint id => uint block) public lastDeposit;
There is an embedded comment in
lastDeposit
mappings that expresses the label for the mappings key and value. but solidity supports naming mapping itself without comments, so there is no need to comment them.Mitigation
remove comments.