-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
split transmit into two functions to address stack too deep errrors #11977
Conversation
I see that you haven't updated any README files. Would it make sense to do so? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Go solidity wrappers are out-of-date, regenerate them via the |
c4ebccc
to
6d5f625
Compare
6d5f625
to
a9bdc0d
Compare
a9bdc0d
to
c07eb49
Compare
SonarQube Quality Gate 0 Bugs No Coverage information |
gasOverhead = | ||
(gasOverhead - gasleft() + 16 * rawReport.length) + | ||
(gasOverhead - gasleft() + 16 * msg.data.length) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just out of curiousity, msg.data and rawReport are equivalent?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope! definitely not. I made this change (and a bunch of other changes) in a separate PR, but I included it here too just to make the refactor cleaner.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can see the comment I added above
No description provided.