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

Public function can be external in LockeERC20 contract functions. #40

Closed
code423n4 opened this issue Dec 1, 2021 · 1 comment
Closed
Labels
bug Something isn't working duplicate This issue or pull request already exists G (Gas Optimization)

Comments

@code423n4
Copy link
Contributor

Handle

cyberboy

Vulnerability details

Impact

public functions that are never called by the contract should be declared external to save gas. This affects all the LockeERC20 contract functions. They have been marked as public but they can be external.

Proof of Concept

https://github.com/code-423n4/2021-11-streaming/blob/56d81204a00fc949d29ddd277169690318b36821/Streaming/src/LockeERC20.sol#L86-L92 - approve()
https://github.com/code-423n4/2021-11-streaming/blob/56d81204a00fc949d29ddd277169690318b36821/Streaming/src/LockeERC20.sol#L94-L106 - transfer()
https://github.com/code-423n4/2021-11-streaming/blob/56d81204a00fc949d29ddd277169690318b36821/Streaming/src/LockeERC20.sol#L108-L128 - transferFrom()
https://github.com/code-423n4/2021-11-streaming/blob/56d81204a00fc949d29ddd277169690318b36821/Streaming/src/LockeERC20.sol#L134-L163 - permit()

Tools Used

Slither

Recommended Mitigation Steps

Mark the following function external instead of the public to save gas.

  • approve()
  • transfer()
  • transferFrom()
  • permit()
@code423n4 code423n4 added bug Something isn't working G (Gas Optimization) labels Dec 1, 2021
code423n4 added a commit that referenced this issue Dec 1, 2021
@0xean
Copy link
Collaborator

0xean commented Jan 16, 2022

dupe of #260

@0xean 0xean closed this as completed Jan 16, 2022
@0xean 0xean added the duplicate This issue or pull request already exists label Jan 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working duplicate This issue or pull request already exists G (Gas Optimization)
Projects
None yet
Development

No branches or pull requests

2 participants