pub type Stake<T: Config<I>, I: 'static = ()> = StorageMap<_GeneratedPrefixForStorageStake<T, I>, Blake2_128Concat, (T::PoolId, T::StakeId), <T as Config<I>>::SignedFixedPoint, ValueQuery>;
Expand description
The stake of a participant in this reward pool.
Storage type is [StorageMap
] with key type (T :: PoolId, T :: StakeId)
and value type SignedFixedPoint < T, I >
.