Skip to content

Commit 445bc04

Browse files
Apply suggestions from code review
Co-authored-by: Marcos Nicolau <76252340+MarcosNicolau@users.noreply.github.com>
1 parent a90de4b commit 445bc04

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

contracts/src/core/AggregationModePaymentService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ contract AggregationModePaymentService is Initializable, UUPSUpgradeable, Access
2727
/// @notice The limit of subscriptions for different addresses per month
2828
uint256 public monthlySubscriptionLimit;
2929

30-
/// @notice The amount of subscriptions for the current month
30+
/// @notice Number of subscriptions in the current month
3131
uint256 public monthlySubscriptionsAmount;
3232

3333
/// @notice Maximum amount of time (in seconds) an address can be subscribed ahead of the current block timestamp.
3434
/// Prevents stacking multiple short subscriptions and paying them over an extended period.
3535
uint256 public maxSubscriptionTimeAhead;
3636

37-
/// @notice The amount of addresses currently subscribed. expirationTime is UTC seconds, to be
38-
/// compared against block timestamps
37+
/// @notice Number of addresses currently subscribed.
38+
/// @dev `expirationTime` is a Unix timestamp (UTC seconds) compared against block timestamps.
3939
mapping(address subscriber => uint256 expirationTime) public subscribedAddresses;
4040

4141
/**

0 commit comments

Comments
 (0)