Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions rs/nns/governance/api/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4283,9 +4283,8 @@ pub enum NnsFunction {
/// The proposal requests to split a subnet.
SplitSubnet = 56,
/// Delete a subnet. The subnet record, catch-up package, threshold signing key
/// and routing table entries are removed from the registry, and the subnet's
/// nodes become unassigned.
/// Currently limited to CloudEngine subnets.
/// and routing table entries are removed from the registry, the subnet is
/// removed from the subnet list, and the subnet's nodes become unassigned.
Comment thread
mraszyk marked this conversation as resolved.
DeleteSubnet = 57,
/// Set or unset the default subnet to which `SetupInitialDKG` management
/// canister calls are routed when no subnet is specified explicitly. If unset,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,8 @@ enum NnsFunction {
NNS_FUNCTION_SPLIT_SUBNET = 56;

// Delete a subnet. The subnet record, catch-up package, threshold signing key
// and routing table entries are removed from the registry, and the subnet's
// nodes become unassigned.
// Currently limited to CloudEngine subnets.
// and routing table entries are removed from the registry, the subnet is
// removed from the subnet list, and the subnet's nodes become unassigned.
NNS_FUNCTION_DELETE_SUBNET = 57;

// Set or unset the default subnet to which `SetupInitialDKG` management
Expand Down
5 changes: 2 additions & 3 deletions rs/nns/governance/src/gen/ic_nns_governance.pb.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5277,9 +5277,8 @@ pub enum NnsFunction {
/// The proposal requests to split a subnet.
SplitSubnet = 56,
/// Delete a subnet. The subnet record, catch-up package, threshold signing key
/// and routing table entries are removed from the registry, and the subnet's
/// nodes become unassigned.
/// Currently limited to CloudEngine subnets.
/// and routing table entries are removed from the registry, the subnet is
/// removed from the subnet list, and the subnet's nodes become unassigned.
DeleteSubnet = 57,
/// Set or unset the default subnet to which `SetupInitialDKG` management
/// canister calls are routed when no subnet is specified explicitly. If unset,
Expand Down
4 changes: 2 additions & 2 deletions rs/nns/governance/src/proposals/execute_nns_function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -935,8 +935,8 @@ impl ValidNnsFunction {
}
ValidNnsFunction::DeleteSubnet => {
"Delete a subnet. The subnet record, catch-up package, threshold signing key \
and routing table entries are removed from the registry, and the subnet's \
nodes become unassigned. Currently limited to CloudEngine subnets."
and routing table entries are removed from the registry, the subnet is \
removed from the subnet list, and the subnet's nodes become unassigned."
}
ValidNnsFunction::SetDefaultInitialDkgSubnet => {
"Set or unset the default subnet to which `SetupInitialDKG` management canister \
Expand Down
4 changes: 4 additions & 0 deletions rs/nns/governance/unreleased_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ on the process that this file is part of, see

## Fixed

* Corrected the `DeleteSubnet` proposal description: dropped the outdated
"Currently limited to CloudEngine subnets" clause and added that the subnet
is also removed from the subnet list.

## Security
Loading