-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for euints in sstore/sload
Add an implementation of SLOAD that supports euints. Also, update the implementation of SSTORE with latest one from fhEVM.
- Loading branch information
1 parent
b863ebb
commit 762deb0
Showing
2 changed files
with
134 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ import "github.com/holiman/uint256" | |
|
||
type Stack interface { | ||
Pop() uint256.Int | ||
Peek() *uint256.Int | ||
} |