Ver código fonte

runtime: increate max working group mint capacity that can be set by council

Mokhtar Naamani 3 anos atrás
pai
commit
9a830e858b

+ 1 - 1
Cargo.lock

@@ -2393,7 +2393,7 @@ dependencies = [
 
 [[package]]
 name = "joystream-node-runtime"
-version = "9.8.0"
+version = "9.9.0"
 dependencies = [
  "frame-benchmarking",
  "frame-executive",

+ 1 - 1
runtime-modules/proposals/codex/src/lib.rs

@@ -81,7 +81,7 @@ pub use crate::proposal_types::{
 pub use proposal_types::{ProposalDetails, ProposalDetailsOf, ProposalEncoder};
 
 // 'Set working group mint capacity' proposal limit
-const WORKING_GROUP_MINT_CAPACITY_MAX_VALUE: u32 = 5_000_000;
+const WORKING_GROUP_MINT_CAPACITY_MAX_VALUE: u32 = 50_000_000;
 // Max allowed value for 'spending' proposal
 const MAX_SPENDING_PROPOSAL_VALUE: u32 = 50_000_000_u32;
 // Max validator count for the 'set validator count' proposal

+ 3 - 0
runtime/CHANGELOG.md

@@ -1,3 +1,6 @@
+### Version 9.9.0 - Sumer - upgrade
+- Increase the max allowed working group mint capacity that can be set by council via proposals
+
 ### Version 9.7.0 - Sumer - runtime upgrade - May 27 2021
 - Introduced new content pallet the new content directory
 - Improved data_directory pallet

+ 1 - 1
runtime/Cargo.toml

@@ -4,7 +4,7 @@ edition = '2018'
 name = 'joystream-node-runtime'
 # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1
 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion
-version = '9.8.0'
+version = '9.9.0'
 
 [dependencies]
 # Third-party dependencies

+ 1 - 1
runtime/src/lib.rs

@@ -85,7 +85,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
     spec_name: create_runtime_str!("joystream-node"),
     impl_name: create_runtime_str!("joystream-node"),
     authoring_version: 9,
-    spec_version: 8,
+    spec_version: 9,
     impl_version: 0,
     apis: crate::runtime_api::EXPORTED_RUNTIME_API_VERSIONS,
     transaction_version: 1,