diff --git a/hedera-node/hedera-smart-contract-service-impl/src/main/java/com/hedera/node/app/service/contract/impl/state/StorageAccess.java b/hedera-node/hedera-smart-contract-service-impl/src/main/java/com/hedera/node/app/service/contract/impl/state/StorageAccess.java index f8fa14353e13..51a2a6e65878 100644 --- a/hedera-node/hedera-smart-contract-service-impl/src/main/java/com/hedera/node/app/service/contract/impl/state/StorageAccess.java +++ b/hedera-node/hedera-smart-contract-service-impl/src/main/java/com/hedera/node/app/service/contract/impl/state/StorageAccess.java @@ -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 */ public record StorageAccess(@NonNull UInt256 key, @NonNull UInt256 value, @Nullable UInt256 writtenValue) { public StorageAccess { diff --git a/hedera-node/hedera-token-service/src/main/java/com/hedera/node/app/service/token/api/TokenServiceApi.java b/hedera-node/hedera-token-service/src/main/java/com/hedera/node/app/service/token/api/TokenServiceApi.java index e8bc257ab9b0..fef7a8dc4d8c 100644 --- a/hedera-node/hedera-token-service/src/main/java/com/hedera/node/app/service/token/api/TokenServiceApi.java +++ b/hedera-node/hedera-token-service/src/main/java/com/hedera/node/app/service/token/api/TokenServiceApi.java @@ -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);