Skip to content

Commit

Permalink
chore: adding default accepted neurons (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaMilosa authored Aug 14, 2024
1 parent 40a60f0 commit 0d8357e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rs/cli/src/commands/vote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ pub struct Vote {
/// These are the proposers which proposals will
/// be automatically voted on
///
/// By default: DRE + automation neuron 80
/// By default: DRE + automation neuron 80 + Rüdiger Birkner
#[clap(
long,
use_value_delimiter = true,
value_delimiter = ',',
value_name = "PROPOSER_ID",
default_value = "80,39,40,46,58,61,77"
default_value = "80,39,40,46,58,61,77,17511507705568200227"
)]
pub accepted_neurons: Vec<u64>,

Expand All @@ -32,8 +32,8 @@ pub struct Vote {
/// only by DRE in processes of rolling out new versions,
/// everything else should be double checked manually
///
/// By default: SubnetReplicaVersionManagement
#[clap(long, use_value_delimiter = true, value_delimiter = ',', value_name = "PROPOSER_ID", default_value = "12")]
/// By default: IcOsVersionDeployment
#[clap(long, use_value_delimiter = true, value_delimiter = ',', default_value = "12")]
pub accepted_topics: Vec<i32>,

/// Override default sleep time
Expand Down

0 comments on commit 0d8357e

Please sign in to comment.