From c15a85f075158b38e023d8874702f9aa77b4b175 Mon Sep 17 00:00:00 2001 From: clabby Date: Mon, 22 Jan 2024 11:15:50 -0500 Subject: [PATCH] Remove incorrect comment --- contracts/lib/LibKeccak.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/lib/LibKeccak.sol b/contracts/lib/LibKeccak.sol index 5d4508d..3f6df59 100644 --- a/contracts/lib/LibKeccak.sol +++ b/contracts/lib/LibKeccak.sol @@ -310,7 +310,6 @@ library LibKeccak { } /// @notice Pads input data to an even multiple of the Keccak-f[1600] permutation block size, 1088 bits (136 bytes). - /// @dev Can clobber memory after `_data` if `_data` is not already a multiple of 136 bytes. function padMemory(bytes memory _data) internal pure returns (bytes memory padded_) { assembly { padded_ := mload(0x40)