Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function handleFees #L148-L151 and updateIBRatio (Basket.sol) can be refactored for efficiency and clarity #161

Open
code423n4 opened this issue Dec 10, 2021 · 0 comments
Labels
bug Something isn't working G (Gas Optimization)

Comments

@code423n4
Copy link
Contributor

Handle

ye0lde

Vulnerability details

Impact

Eliminating intermediate variables and reducing state variable references can reduce gas usage and improve code clarity.

Proof of Concept

The handleFees function is here:
https://github.com/code-423n4/2021-12-defiprotocol/blob/205d3766044171e325df6a8bf2e79b37856eece1/contracts/contracts/Basket.sol#L148-L151

I suggest this refactoring for #L148-L151:

		emit NewIBRatio(ibRatio = ibRatio * startSupply / totalSupply());

The updateIBRatio function is here:
https://github.com/code-423n4/2021-12-defiprotocol/blob/205d3766044171e325df6a8bf2e79b37856eece1/contracts/contracts/Basket.sol#L266-L272

I suggest this refactoring:

    function updateIBRatio(uint256 newRatio) onlyAuction external override returns (uint256) {

        emit NewIBRatio(ibRatio = newRatio);

        return newRatio; 
    }

Tools Used

Visual Studio Code, Remix

Recommended Mitigation Steps

See POC for details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working G (Gas Optimization)
Projects
None yet
Development

No branches or pull requests

1 participant