-
Notifications
You must be signed in to change notification settings - Fork 20.5k
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
Implement bounded 256 bit int #340
Labels
Comments
Hi @obscuren I'm interested in working on this feature. What else is required at the moment? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
AusIV
pushed a commit
to NoteGio/go-ethereum
that referenced
this issue
Jul 12, 2021
…gofmt .github/workflows: fix not-gofmt'd bootnodes files after audit
tony-ricciardi
pushed a commit
to tony-ricciardi/go-ethereum
that referenced
this issue
Jan 20, 2022
marioevz
pushed a commit
to marioevz/go-ethereum
that referenced
this issue
Feb 6, 2024
* cmd/{geth, utils}: add a command to clear verkle costs fix: boolean issue fix: load finalization state in FinalizeAndAssemble (ethereum#340) * Conversion and TransitionTrie fixes (ethereum#346) * fixes Signed-off-by: Ignacio Hagopian <[email protected]> * remove old comment Signed-off-by: Ignacio Hagopian <[email protected]> --------- Signed-off-by: Ignacio Hagopian <[email protected]> * trace cleanup --------- Signed-off-by: Ignacio Hagopian <[email protected]> Co-authored-by: Ignacio Hagopian <[email protected]>
sduchesneau
pushed a commit
to streamingfast/go-ethereum
that referenced
this issue
Aug 30, 2024
[NIT-2670] Merge v1.13.13
s1na
pushed a commit
to s1na/go-ethereum
that referenced
this issue
Dec 2, 2024
luanxu-mxc
pushed a commit
to MXCzkEVM/mxc-geth
that referenced
this issue
Dec 26, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/jonasnick/eth-neg-value-tx is calling for fixed size integers. The first implementation of this package will use the
x = x & 1 << 256 - 1
to limit all operations.Add
/Sub
/Mul
/Div
/Mod
Set
/SetString
Uint
/Int
Cmp
big.Int
through out the implementationrlp.Read / Write
The text was updated successfully, but these errors were encountered: