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

Fix/36 gas optimization #310

Merged
merged 4 commits into from
Jul 12, 2021
Merged

Fix/36 gas optimization #310

merged 4 commits into from
Jul 12, 2021

Conversation

kamescg
Copy link
Contributor

@kamescg kamescg commented Jul 1, 2021

Comment on lines 1061 to 1062
address _tokenEnd = _tokens.end();
while (currentToken != _tokenEnd) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should keep the same nomenclature for local variables

Suggested change
address _tokenEnd = _tokens.end();
while (currentToken != _tokenEnd) {
address tokenEnd = _tokens.end();
while (currentToken != tokenEnd) {

@kamescg kamescg merged commit 65f81f8 into master Jul 12, 2021
@kamescg kamescg deleted the fix/36 branch July 15, 2021 00:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants