-
Notifications
You must be signed in to change notification settings - Fork 179
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
[Flow EVM] update stdlib balance to use UInt instead of UFix64 #5303
[Flow EVM] update stdlib balance to use UInt instead of UFix64 #5303
Conversation
…t' of github.com:onflow/flow-go into ramtin/4961-evm-update-balance-in-cadence-smart-contract
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #5303 +/- ##
==========================================
- Coverage 55.70% 55.68% -0.03%
==========================================
Files 1002 1002
Lines 96879 96914 +35
==========================================
- Hits 53971 53968 -3
- Misses 38849 38880 +31
- Partials 4059 4066 +7
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Maybe consider using |
/// that is used to store account balances inside EVM | ||
/// similar to the way WEI is used to store ETH divisible to 18 decimal places. | ||
access(all) | ||
var attoflow: UInt |
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 checking if you intentionally name it atttoflow
not attoFLOW
because it's a new name for metric?
closes #4961