Skip to content

Commit

Permalink
Merge pull request #656 from galacticcouncil/fix/governance
Browse files Browse the repository at this point in the history
fix: update council voting params and tip execution delay
  • Loading branch information
jak-pan authored Feb 22, 2024
2 parents c722cfd + 9277dfb commit 8a02b93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/basilisk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "basilisk-runtime"
version = "108.0.0"
version = "109.0.0"
authors = ["GalacticCouncil"]
edition = "2021"
homepage = "https://github.com/galacticcouncil/Basilisk-node"
Expand Down
8 changes: 4 additions & 4 deletions runtime/basilisk/src/governance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ parameter_types! {
pub const DesiredMembers: u32 = 7;
pub const DesiredRunnersUp: u32 = 9;
pub const ElectionsPhragmenPalletId: LockIdentifier = *b"phrelect";
pub const MaxElectionCandidates: u32 = 1_000;
pub const MaxElectionVoters: u32 = 1_000;
pub const MaxVotesPerVoter: u32 = 5;
pub const MaxElectionCandidates: u32 = 100;
pub const MaxElectionVoters: u32 = 768;
pub const MaxVotesPerVoter: u32 = 10;
}

impl pallet_elections_phragmen::Config for Runtime {
Expand Down Expand Up @@ -181,7 +181,7 @@ impl pallet_collective::Config<TechnicalCollective> for Runtime {

parameter_types! {
pub const DataDepositPerByte: Balance = CENTS;
pub const TipCountdown: BlockNumber = 2 * HOURS;
pub const TipCountdown: BlockNumber = 24 * HOURS;
pub const TipFindersFee: Percent = Percent::from_percent(1);
pub const TipReportDepositBase: Balance = 10 * DOLLARS;
pub const TipReportDepositPerByte: Balance = CENTS;
Expand Down
2 changes: 1 addition & 1 deletion runtime/basilisk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("basilisk"),
impl_name: create_runtime_str!("basilisk"),
authoring_version: 1,
spec_version: 108,
spec_version: 109,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 8a02b93

Please sign in to comment.