code-423n4 / 2023-02-reserve-mitigation-contest-findings

1 stars 0 forks source link

Mitigation Confirmed for Mitigation of M-12: Issue Mitigated #36

Open code423n4 opened 1 year ago

code423n4 commented 1 year ago

Issue Mitigated M-12 https://github.com/code-423n4/2023-01-reserve-findings/issues/276

As suggested by warden, RSR is now sent to stRSR instead of rsrTrader

        if (rsr.balanceOf(address(this)) > 0) {

            IERC20Upgradeable(address(rsr)).safeTransfer(
                address(stRSR),
                rsr.balanceOf(address(this))
            );
        }
c4-judge commented 1 year ago

0xean marked the issue as satisfactory