|
@@ -202,10 +202,12 @@ pub struct ChannelOwnershipTransferRequestRecord<
|
|
CuratorGroupId,
|
|
CuratorGroupId,
|
|
DAOId,
|
|
DAOId,
|
|
Balance,
|
|
Balance,
|
|
|
|
+ AccountId,
|
|
> {
|
|
> {
|
|
channel_id: ChannelId,
|
|
channel_id: ChannelId,
|
|
new_owner: ChannelOwner<MemberId, CuratorGroupId, DAOId>,
|
|
new_owner: ChannelOwner<MemberId, CuratorGroupId, DAOId>,
|
|
payment: Balance,
|
|
payment: Balance,
|
|
|
|
+ new_reward_account: Option<AccountId>,
|
|
}
|
|
}
|
|
|
|
|
|
// ChannelOwnershipTransferRequest type alias for simplification.
|
|
// ChannelOwnershipTransferRequest type alias for simplification.
|
|
@@ -215,6 +217,7 @@ pub type ChannelOwnershipTransferRequest<T> = ChannelOwnershipTransferRequestRec
|
|
<T as ContentActorAuthenticator>::CuratorGroupId,
|
|
<T as ContentActorAuthenticator>::CuratorGroupId,
|
|
<T as StorageOwnership>::DAOId,
|
|
<T as StorageOwnership>::DAOId,
|
|
BalanceOf<T>,
|
|
BalanceOf<T>,
|
|
|
|
+ <T as system::Trait>::AccountId,
|
|
>;
|
|
>;
|
|
|
|
|
|
/// Information about channel being created.
|
|
/// Information about channel being created.
|