-
-
Notifications
You must be signed in to change notification settings - Fork 289
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: use bigint gwei type for amount in requests instead of num 64 #7085
Conversation
@g11tech what's the amount value of the failed block? |
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## unstable #7085 +/- ##
=========================================
Coverage 50.90% 50.90%
=========================================
Files 594 594
Lines 39611 39611
Branches 2248 2257 +9
=========================================
+ Hits 20163 20164 +1
+ Misses 19448 19447 -1 |
Hello, my username is naiba 666. My gmail account is naiba ***@***.***
I opened the edge wallet in 2022. But I can't log in now.
sadras
14 Eyl 2024 Cmt 11:53 tarihinde NC ***@***.***> şunu yazdı:
… ***@***.**** approved this pull request.
—
Reply to this email directly, view it on GitHub
<#7085 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXDRKKIVVHVCCADLGILQY2DZWP2PDAVCNFSM6AAAAABOGUZRQ2VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDGMBUGQYTANRSGY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Performance Report✔️ no performance regression detected Full benchmark results
|
What about gnosis we support them as well |
Gnosis chain uses GNO as stake which has a total supply of 3 million (see marketcap) so we should be fine there as well. |
it's good to know we're safe on mainnet using either UintNum64 or Gwei, but I'd keep it unless there are more reasons to revert imo |
…7085) * fix: use bigint gwei type for amount in requests instead of num 64 * revert deposit amount to uintnum64 as unlikely to get a high amount * fix
amount type in the requests are 64 bit gwei which is to be treated as a uintbn64 ssz type and not uintnum64
the bug lead to incorrect amount deserializing in block because of inherent limitations of number type in javascript object leading to incorrect calculation of hash in a devnet3 block causing lodestar nodes to stall
this PR fixes