diff --git a/Cargo.lock b/Cargo.lock index c493c0a..36ba424 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1949,7 +1949,7 @@ dependencies = [ [[package]] name = "datahighway-parachain-runtime" -version = "3.9.0" +version = "3.9.1" dependencies = [ "chrono", "cumulus-pallet-aura-ext", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d0f1dfe..408480d 100755 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'datahighway-parachain-runtime' -version = '3.9.0' +version = '3.9.1' authors = ['MXC Foundation GmbH ', 'Luke Schoen ', 'Ilya Beregovskiy '] license = 'GPL-3' homepage = 'http://www.datahighway.com/' diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 7c847be..6136b37 100755 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -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, @@ -504,7 +504,7 @@ impl pallet_membership::Config 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;