-
Notifications
You must be signed in to change notification settings - Fork 476
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
avm-abi: Update functions migrated to avm-abi library #4979
Conversation
fd7e913
to
bf6d8a7
Compare
bf6d8a7
to
1fb45ba
Compare
Codecov Report
@@ Coverage Diff @@
## master #4979 +/- ##
==========================================
- Coverage 53.68% 53.65% -0.04%
==========================================
Files 432 431 -1
Lines 54068 53998 -70
==========================================
- Hits 29029 28975 -54
+ Misses 22793 22784 -9
+ Partials 2246 2239 -7
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Converted to Draft to prevent accidental merge before AVM-ABI release |
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.
Please fix the import order, otherwise LGTM
go.mod
Outdated
@@ -39,6 +38,7 @@ require ( | |||
) | |||
|
|||
require ( | |||
github.com/algorand/avm-abi v0.2.0 // indirect |
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.
Why is this indirect?
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.
Not sure. I added this via go get
but updated the mod file manually to be a direct require.
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.
I believe you can run go mod tidy
to have go update the dependencies to match their usage in the codebase. I'd recommend still running it locally, since it might reorder the dependencies
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.
Replacement looks correct to me, but I do have a (likely inconsequential) comment about the go.sum
changes
d056257
to
acaa2d1
Compare
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
Summary
Several functions have been migrated to the avm-abi library. This pull request updates the code to use the functions in their new location.
Test Plan
Existing regression tests.