Skip to content

Commit

Permalink
Fix invalid comment
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Dec 30, 2024
1 parent 8349c91 commit f095cc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions system-contracts/contracts/EvmEmulator.yul
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ object "EvmEmulator" {

mstore(LAST_RETURNDATA_SIZE_OFFSET(), sub(rtsz, 32))

// Skip the returnData
// Skip first 32 bytes of the returnData
ptrAddIntoActive(32)
}
}
Expand Down Expand Up @@ -4188,7 +4188,7 @@ object "EvmEmulator" {

mstore(LAST_RETURNDATA_SIZE_OFFSET(), sub(rtsz, 32))

// Skip the returnData
// Skip first 32 bytes of the returnData
ptrAddIntoActive(32)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ function _saveReturndataAfterEVMCall(_outputOffset, _outputLen) -> _gasLeft {

mstore(LAST_RETURNDATA_SIZE_OFFSET(), sub(rtsz, 32))

// Skip the returnData
// Skip first 32 bytes of the returnData
ptrAddIntoActive(32)
}
}
Expand Down

0 comments on commit f095cc0

Please sign in to comment.