Skip to content

Commit

Permalink
Add NextKeys and QueuedKeys for session module (paritytech#291)
Browse files Browse the repository at this point in the history
* Add NextKeys and QueuedKeys for session module

* Fix fmt
  • Loading branch information
liuchengxu authored Aug 23, 2021
1 parent 2749bd3 commit 414f817
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/frame/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,22 @@ pub struct ValidatorsStore<T: Session> {
pub _runtime: PhantomData<T>,
}

/// The queued keys for the next session.
#[derive(Encode, Store, Debug)]
pub struct QueuedKeysStore<T: Session> {
#[store(returns = Vec<(<T as Session>::ValidatorId, T::Keys)>)]
/// Marker for the runtime
pub _runtime: PhantomData<T>,
}

/// The next session keys for a validator.
#[derive(Encode, Store, Debug)]
pub struct NextKeysStore<'a, T: Session> {
#[store(returns = Option<<T as Session>::Keys>)]
/// The validator account.
pub validator_id: &'a <T as Session>::ValidatorId,
}

default_impl!(ValidatorsStore);

/// Set the session keys for a validator.
Expand Down

0 comments on commit 414f817

Please sign in to comment.