Browse Source

Update ‘set validator count’ proposal limits

Shamil Gadelshin 4 years ago
parent
commit
818c82d99c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      runtime-modules/proposals/codex/src/lib.rs

+ 1 - 1
runtime-modules/proposals/codex/src/lib.rs

@@ -585,7 +585,7 @@ decl_module! {
             );
 
             ensure!(
-                new_validator_count <= 1000, // max validator count
+                new_validator_count <= 100, // max validator count
                 Error::InvalidValidatorCount
             );