Skip to content

Commit

Permalink
fix: Addressing comment
Browse files Browse the repository at this point in the history
Signed-off-by: Kristiyan Selveliev <[email protected]>
  • Loading branch information
kselveliev committed Feb 12, 2025
1 parent 21864fe commit afa4aee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ private Map<Bytes, Bytes> getModularizedUpdatedStorage(Address accountAddress) {
storageState.modifiedKeys().stream()
.filter(SlotKey.class::isInstance)
.map(SlotKey.class::cast)
.filter(slotKey -> slotKey.contractID().equals(accountContractID))
.filter(slotKey -> accountContractID.equals(slotKey.contractID()))
.forEach(slotKey -> {
SlotValue slotValue = (SlotValue) storageState.get(slotKey);
if (slotValue != null) {
Expand Down

0 comments on commit afa4aee

Please sign in to comment.