We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3de3fd commit 07d8f77Copy full SHA for 07d8f77
pallets/admin-utils/src/lib.rs
@@ -66,9 +66,9 @@ pub mod pallet {
66
pub enum Error<T> {
67
/// The subnet does not exist, check the netuid parameter
68
SubnetDoesNotExist,
69
- /// The max allowed validator number to be set is larger than max allowed UIDs
+ /// The maximum number of subnet validators must be less than the maximum number of allowed UIDs in the subnet.
70
MaxValidatorsLargerThanMaxUIds,
71
- /// The maximum allowed UIDs is less than UIDs already in the subnet
+ /// The maximum number of subnet validators must be more than the current number of UIDs already in the subnet.
72
MaxAllowedUIdsLessThanCurrentUIds,
73
}
74
0 commit comments