| # |
Description |
| 7.10 |
Verify that the external keyword is used for functions that can be called externally only to save gas. |
Only changing to external will not save gas. The arguments parameters also must be changed from memory to calldata:
https://ethereum.stackexchange.com/a/107939/4630
Only changing to
externalwill not save gas. The arguments parameters also must be changed frommemorytocalldata:https://ethereum.stackexchange.com/a/107939/4630