You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vesting contract uses Action type as it's redeemer, this type has a single data constructor which is named Disburse whose type is Disbure :: [PubKeyHash] -> Action. We think that this name is misleading as the role of this redeemer is not only to disburse the value locked in the contract when the deadline has passed but also to update the current beneficiaries of the Input datum. Hence, we think the option of updating beneficiaries should also be highlighted in the name of Action type's data constructor.
The text was updated successfully, but these errors were encountered:
Description
Vesting contract uses
Action
type as it's redeemer, this type has a single data constructor which is namedDisburse
whose type isDisbure :: [PubKeyHash] -> Action
. We think that this name is misleading as the role of this redeemer is not only to disburse the value locked in the contract when the deadline has passed but also to update the current beneficiaries of theInput
datum. Hence, we think the option of updating beneficiaries should also be highlighted in the name of Action type's data constructor.The text was updated successfully, but these errors were encountered: