frame/beefy: prune entries in set id session mapping (#13411)

Add limit for the number of entries in the `SetIdSession` mapping.
For example, it can be set to the bonding duration (in sessions).

Signed-off-by: acatangiu <adrian@parity.io>
This commit is contained in:
Adrian Catangiu
2023-02-21 12:50:41 +02:00
committed by GitHub
parent 7a10154188
commit 67c250fecb
4 changed files with 59 additions and 1 deletions
+1
View File
@@ -133,6 +133,7 @@ impl pallet_beefy::Config for Test {
)>>::IdentificationTuple;
type HandleEquivocation = ();
type MaxAuthorities = ConstU32<100>;
type MaxSetIdSessionEntries = ConstU64<100>;
type OnNewValidatorSet = BeefyMmr;
type WeightInfo = ();
}