Skip to content

Commit

Permalink
Set treasury proposal minimum bond to 10k DHX (#62)
Browse files Browse the repository at this point in the history
* Increase treasury minimum to 10k DHX

* Bump versions
  • Loading branch information
penumbra23 authored Apr 13, 2023
1 parent 20b5869 commit a6d2b50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'datahighway-parachain-runtime'
version = '3.9.0'
version = '3.9.1'
authors = ['MXC Foundation GmbH <https://t.me/mxcfoundation>', 'Luke Schoen <[email protected]>', 'Ilya Beregovskiy <[email protected]>']
license = 'GPL-3'
homepage = 'http://www.datahighway.com/'
Expand Down
4 changes: 2 additions & 2 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: 9,
impl_version: 0,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
state_version: 1,
Expand Down Expand Up @@ -504,7 +504,7 @@ impl pallet_membership::Config<pallet_membership::Instance1> for Runtime {

parameter_types! {
pub const ProposalBond: Permill = Permill::from_percent(5);
pub const ProposalBondMinimum: Balance = 1 * DOLLARS;
pub const ProposalBondMinimum: Balance = 10_000 * DOLLARS;
pub const SpendPeriod: BlockNumber = 1 * DAYS;
pub const Burn: Permill = Permill::from_percent(0);
pub const TipCountdown: BlockNumber = 1 * DAYS;
Expand Down

0 comments on commit a6d2b50

Please sign in to comment.