This fixes all the warnings we have left currently.
Note the solhint-disable-line statements for non-issues e.g. the reentrancy one in SharesRequestor which is incorrectly flagging that line because of msg.sender.transfer in a different code branch (if/else statement above so not relevant)
I've also set max-warnings to 0 so that it will fail from now on if new warnings are introduced.
This fixes all the warnings we have left currently.
Note the
solhint-disable-line
statements for non-issues e.g. the reentrancy one in SharesRequestor which is incorrectly flagging that line because ofmsg.sender.transfer
in a different code branch (if/else statement above so not relevant)I've also set
max-warnings
to 0 so that it will fail from now on if new warnings are introduced.