diff --git a/pallets/proof-of-stake/src/lib.rs b/pallets/proof-of-stake/src/lib.rs index 04fea2501c..21c4d8a0f1 100644 --- a/pallets/proof-of-stake/src/lib.rs +++ b/pallets/proof-of-stake/src/lib.rs @@ -136,7 +136,10 @@ pub mod pallet { >; #[pallet::storage] - /// Stores information about pool weight and accumulated rewards + /// Stores information about pool weight and accumulated rewards. The accumulated + /// rewards amount is the number of rewards that can be claimed per liquidity + /// token. Here is tracked the number of rewards per liquidity token relationship. + /// Expect larger values when the number of liquidity tokens are smaller. pub type PromotedPoolRewards = StorageValue<_, BTreeMap, ValueQuery>;