From 3dbc0d094a954a41596fc429341b35dc83e599fa Mon Sep 17 00:00:00 2001 From: gabriel-aranha-cw Date: Thu, 14 Nov 2024 13:55:25 -0300 Subject: [PATCH] chore: simplify contract --- e2e/contracts/TestContractBlockTimestamp.sol | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/e2e/contracts/TestContractBlockTimestamp.sol b/e2e/contracts/TestContractBlockTimestamp.sol index a4687fee6..653e6cb08 100644 --- a/e2e/contracts/TestContractBlockTimestamp.sol +++ b/e2e/contracts/TestContractBlockTimestamp.sol @@ -19,16 +19,4 @@ contract TestContractBlockTimestamp { emit TimestampRecorded(timestamp, block.number); return timestamp; } - - /// @dev Gets the current block timestamp - /// @return The current block.timestamp - function getCurrentTimestamp() public view returns (uint256) { - return block.timestamp; - } - - /// @dev Gets all recorded timestamps - /// @return Array of TimeRecord structs - function getRecords() public view returns (TimeRecord[] memory) { - return records; - } } \ No newline at end of file