Type Alias PayoutFor

Source
pub type PayoutFor<T> = Vec<(AuthorOf<T>, <T as Config>::Points)>;
Expand description

Represents a collection of authors and their ephemeral points (e.g., block producer points) for a single reward cycle.

  • Each entry is (Author, Points).
  • Serves as input to the Config::RewardModel plugin to compute per-author payouts.
  • Points are temporary and cleared after the cycle.

Aliased Typeยง

pub struct PayoutFor<T> { /* private fields */ }