Session Module

The Session module allows validators to manage their session keys, provides a function for changing the session length, and handles session rotation.

Overview

Terminology

Goals

The Session noble is designed to make the following possible:

Interface

Dispatchable Functions

Public Functions

Usage

Example from the FABRIC

The Staking noble uses the Session noble to get the validator set.

```rust use noble_session as session;

fn validators() -> Vec<::ValidatorId> { >::validators() } ```

Related Modules

License: Apache-2.0