Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SmartEscrow constructor parameter documentation #125

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/smart-escrow/SmartEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ contract SmartEscrow is AccessControlDefaultAdminRules {
/// @param _benefactorOwner Address which represents the benefactor entity.
/// @param _beneficiaryOwner Address which represents the beneficiary entity.
/// @param _escrowOwner Address which represents both the benefactor and the beneficiary entities.
/// @param _start Timestamp of the start of vesting period (or the cliff, if there is one).
/// @param _start Timestamp of the start of vesting period.
/// @param _cliffStart Timestamp when tokens start to vest (must be >= _start).
/// @param _end Timestamp of the end of the vesting period.
/// @param _vestingPeriodSeconds Period of time between each vesting event in seconds.
/// @param _initialTokens Number of OP tokens which vest at start time.
Expand Down