Skip to content

Commit

Permalink
rename to voucher Owner
Browse files Browse the repository at this point in the history
  • Loading branch information
gfournieriExec committed May 29, 2024
1 parent e22d6f8 commit c4aa607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/beacon/Voucher.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ contract Voucher is Initializable, IVoucher {

/**
* Initialize implementation contract.
* @param owner The owner of the contract.
* @param voucherOwner The owner of the contract.
* @param voucherTypeId The type Id of the voucher.
* @param expiration The expiration timestamp of the voucher.
* @param voucherHub The address of the voucher hub.
*/
function initialize(
address owner,
address voucherOwner,
address voucherHub,
uint256 expiration,
uint256 voucherTypeId
) external initializer {
VoucherStorage storage $ = _getVoucherStorage();
$._owner = owner;
$._owner = voucherOwner;
$._voucherHub = voucherHub;
$._expiration = expiration;
$._type = voucherTypeId;
Expand Down

0 comments on commit c4aa607

Please sign in to comment.