-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: Unencrypted logs are not strings (#4392)
The private execution oracle was assuming unencrypted log payloads were strings, where each character was encoded as a field. This means that emitting a field array did not work, since all bytes but the least significant one for each field were thrown out. Given we are not emitting strings from anywhere across our sample contracts, this commit changes the oracle so it does not throw away the fields contents, and instead pushes everything into the log payload.
- Loading branch information
1 parent
6895f52
commit 25a7ea7
Showing
3 changed files
with
28 additions
and
1 deletion.
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
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