Skip to content

Commit

Permalink
Remove cere-dev min cluster redundancy requirements (#350)
Browse files Browse the repository at this point in the history
The patch allows smaller clusters in test environments which should not
necessary provide minimal redundancy guarantees.
  • Loading branch information
khssnv authored Jun 4, 2024
1 parent 5df04dd commit 570246f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime/cere-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1160,9 +1160,9 @@ impl pallet_ddc_clusters::Config for Runtime {
type StakerCreator = pallet_ddc_staking::Pallet<Runtime>;
type Currency = Balances;
type WeightInfo = pallet_ddc_clusters::weights::SubstrateWeight<Runtime>;
type MinErasureCodingRequiredLimit = ConstU32<4>;
type MinErasureCodingTotalLimit = ConstU32<6>;
type MinReplicationTotalLimit = ConstU32<3>;
type MinErasureCodingRequiredLimit = ConstU32<0>;
type MinErasureCodingTotalLimit = ConstU32<0>;
type MinReplicationTotalLimit = ConstU32<0>;
}

parameter_types! {
Expand Down

0 comments on commit 570246f

Please sign in to comment.