Skip to content

Commit

Permalink
fix: 🐛 fellowship (#1002)
Browse files Browse the repository at this point in the history
  • Loading branch information
yooml authored Jul 19, 2023
1 parent 7ed0c3a commit 290b39e
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions runtime/bifrost-kusama/src/governance/fellowship.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "candidates",
max_deciding: 10,
decision_deposit: 100 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -67,9 +67,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "members",
max_deciding: 10,
decision_deposit: 10 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -89,9 +89,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "proficients",
max_deciding: 10,
decision_deposit: 10 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -111,9 +111,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "fellows",
max_deciding: 10,
decision_deposit: 10 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -133,9 +133,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "senior fellows",
max_deciding: 10,
decision_deposit: 10 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -155,9 +155,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "experts",
max_deciding: 10,
decision_deposit: 1 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -177,9 +177,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "senior experts",
max_deciding: 10,
decision_deposit: 1 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -199,9 +199,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "masters",
max_deciding: 10,
decision_deposit: 1 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -221,9 +221,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "senior masters",
max_deciding: 10,
decision_deposit: 1 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand All @@ -243,9 +243,9 @@ impl pallet_referenda::TracksInfo<Balance, BlockNumber> for TracksInfo {
name: "grand masters",
max_deciding: 10,
decision_deposit: 1 * DOLLARS,
prepare_period: 30 * MINUTES,
decision_period: 7 * DAYS,
confirm_period: 30 * MINUTES,
prepare_period: 1 * MINUTES,
decision_period: 2 * DAYS,
confirm_period: 5 * MINUTES,
min_enactment_period: 1 * MINUTES,
min_approval: pallet_referenda::Curve::LinearDecreasing {
length: Perbill::from_percent(100),
Expand Down

0 comments on commit 290b39e

Please sign in to comment.