Skip to content
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

address comments from pr #9519 #9521

Merged
merged 2 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @param key the key of the access
* @param value the value read or overwritten
* @param writtenValue if not Bytes.EMPTY, the overwriting value
* @param writtenValue if not null, the overwriting value
lukelee-sl marked this conversation as resolved.
Show resolved Hide resolved
*/
public record StorageAccess(@NonNull UInt256 key, @NonNull UInt256 value, @Nullable UInt256 writtenValue) {
public StorageAccess {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void assertValidStakingElection(
* Updates the storage metadata for the given contract.
*
* @param accountId the id of the contract
* @param firstKey the first key in the storage linked list, empty if the storage is empty
* @param firstKey the first key in the storage linked list, Bytes.EMPTY if the storage is empty
* @param netChangeInSlotsUsed the net change in the number of storage slots used by the contract
*/
void updateStorageMetadata(@NonNull AccountID accountId, @NonNull Bytes firstKey, int netChangeInSlotsUsed);
Expand Down