Skip to content

Commit

Permalink
Update similar comment for maintainability
Browse files Browse the repository at this point in the history
  • Loading branch information
wadealexc committed Oct 12, 2023
1 parent a3bf94b commit 44b4492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contracts/pods/EigenPod.sol
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ contract EigenPod is IEigenPod, Initializable, ReentrancyGuardUpgradeable, Eigen
"EigenPod.verifyWithdrawalCredentials: validatorIndices and proofs must be same length"
);

// Withdrawal credential proof should not be "stale" (older than 4.5 hrs)
// Withdrawal credential proof should not be "stale" (older than VERIFY_BALANCE_UPDATE_WINDOW_SECONDS)
require(
oracleTimestamp + VERIFY_BALANCE_UPDATE_WINDOW_SECONDS >= block.timestamp,
"EigenPod.verifyWithdrawalCredentials: specified timestamp is too far in past"
Expand Down

0 comments on commit 44b4492

Please sign in to comment.