Skip to content

Commit

Permalink
Increase minimum deposit for public referenda (#56)
Browse files Browse the repository at this point in the history
* Increase minimum deposit from 1DHX to 10DHX for public referenda ( in pallet_referenda and pallet_democracy )

* Bump version
  • Loading branch information
penumbra23 authored Mar 7, 2023
1 parent c0fe1d2 commit f874d05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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 node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'datahighway-collator'
version = '3.8.0'
version = '3.8.1'
authors = ['Anonymous']
description = 'DataHighway parachain collator FRAME-based Substrate Node based upon the Cumulus.'
license = 'Unlicense'
Expand Down
6 changes: 3 additions & 3 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
impl_name: create_runtime_str!("datahighway-parachain"),
authoring_version: 2,
spec_version: 7,
impl_version: 0,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
state_version: 1,
Expand Down Expand Up @@ -880,7 +880,7 @@ impl pallet_conviction_voting::Config for Runtime {

parameter_types! {
pub const AlarmInterval: BlockNumber = 1;
pub const SubmissionDeposit: Balance = 1 * DOLLARS;
pub const SubmissionDeposit: Balance = 10_000 * DOLLARS;
pub const UndecidingTimeout: BlockNumber = 7 * DAYS;
}

Expand Down Expand Up @@ -951,7 +951,7 @@ parameter_types! {
pub const VotingPeriod: BlockNumber = 7 * DAYS;
pub const FastTrackVotingPeriod: BlockNumber = 3 * DAYS;
pub const InstantAllowed: bool = true;
pub const MinimumDeposit: Balance = 1 * DOLLARS;
pub const MinimumDeposit: Balance = 10_000 * DOLLARS;
pub const EnactmentPeriod: BlockNumber = 1 * DAYS;
pub const CooloffPeriod: BlockNumber = 7 * DAYS;
pub const MaxVotes: u32 = MAX_VOTES_AS_CONST;
Expand Down

0 comments on commit f874d05

Please sign in to comment.