Open hats-bug-reporter[bot] opened 2 months ago
Github username: -- Twitter username: -- Submission hash (on-chain): 0xf83ec142dee1fbdac67614b3e5385b645d83abd069579a44233ad05d602b0639 Severity: low
Description: Description\ Limiting the timestamp to fit in a uint32 will cause the call below to start reverting in 2106.
uint32
Attachments
uint32 timestamp = block.timestamp.safeCastTo32();
Consider replacing the uint32 timestamp with a larger type like uint64.
uint64
Invalid issue.
Staking contracts are out of scope.
Github username: -- Twitter username: -- Submission hash (on-chain): 0xf83ec142dee1fbdac67614b3e5385b645d83abd069579a44233ad05d602b0639 Severity: low
Description: Description\ Limiting the timestamp to fit in a
uint32
will cause the call below to start reverting in 2106.Attachments
Consider replacing the
uint32
timestamp with a larger type likeuint64
.