git.delta.rocks / unique-network / refs/commits / 0e75cd977fe9

difftreelog

Merge pull request #978 from UniqueNetwork/fix/opal-governance-timings

Yaroslav Bolyukin2023-09-04parents: #c6d53cc #a797a1d.patch.diff
in: master

14 files changed

modified.docker/docker-compose.gov.j2diffbeforeafterboth
--- a/.docker/docker-compose.gov.j2
+++ b/.docker/docker-compose.gov.j2
@@ -21,4 +21,4 @@
       options:
         max-size: "1m"
         max-file: "3"
-    command: cargo run --release --features={{ NETWORK }}-runtime,{{ WASM_NAME }}-runtime/test-env -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
+    command: cargo run --release --features={{ NETWORK }}-runtime,{{ WASM_NAME }}-runtime/gov-test-timings -- --dev -linfo --rpc-cors=all --unsafe-rpc-external
modified.github/workflows/gov.ymldiffbeforeafterboth
--- a/.github/workflows/gov.yml
+++ b/.github/workflows/gov.yml
@@ -1,4 +1,4 @@
-# Governance tests in --dev mode with test-env feature enabled to reduce gov timings
+# Governance tests in --dev mode with gov-test-timings feature enabled to reduce gov timings
 name: governance tests
 
 # Triger: only call from main workflow(re-usable workflows)
modifiedruntime/common/config/governance/council.rsdiffbeforeafterboth
--- a/runtime/common/config/governance/council.rs
+++ b/runtime/common/config/governance/council.rs
@@ -5,10 +5,10 @@
 	pub CouncilMaxMembers: u32 = 100;
 }
 
-#[cfg(not(feature = "test-env"))]
+#[cfg(not(feature = "gov-test-timings"))]
 use crate::governance_timings::council as council_timings;
 
-#[cfg(feature = "test-env")]
+#[cfg(feature = "gov-test-timings")]
 pub mod council_timings {
 	use super::*;
 
modifiedruntime/common/config/governance/democracy.rsdiffbeforeafterboth
--- a/runtime/common/config/governance/democracy.rs
+++ b/runtime/common/config/governance/democracy.rs
@@ -7,10 +7,10 @@
 	pub MaxProposals: u32 = 100;
 }
 
-#[cfg(not(feature = "test-env"))]
+#[cfg(not(feature = "gov-test-timings"))]
 use crate::governance_timings::democracy as democracy_timings;
 
-#[cfg(feature = "test-env")]
+#[cfg(feature = "gov-test-timings")]
 pub mod democracy_timings {
 	use super::*;
 
modifiedruntime/common/config/governance/fellowship.rsdiffbeforeafterboth
--- a/runtime/common/config/governance/fellowship.rs
+++ b/runtime/common/config/governance/fellowship.rs
@@ -12,10 +12,10 @@
 	pub SubmissionDeposit: Balance = 1000;
 }
 
-#[cfg(not(feature = "test-env"))]
+#[cfg(not(feature = "gov-test-timings"))]
 use crate::governance_timings::fellowship as fellowship_timings;
 
-#[cfg(feature = "test-env")]
+#[cfg(feature = "gov-test-timings")]
 pub mod fellowship_timings {
 	use super::*;
 
modifiedruntime/common/config/governance/technical_committee.rsdiffbeforeafterboth
--- a/runtime/common/config/governance/technical_committee.rs
+++ b/runtime/common/config/governance/technical_committee.rs
@@ -5,10 +5,10 @@
 	pub TechnicalMaxMembers: u32 = 100;
 }
 
-#[cfg(not(feature = "test-env"))]
+#[cfg(not(feature = "gov-test-timings"))]
 use crate::governance_timings::technical_committee as technical_committee_timings;
 
-#[cfg(feature = "test-env")]
+#[cfg(feature = "gov-test-timings")]
 pub mod technical_committee_timings {
 	use super::*;
 
modifiedruntime/common/config/mod.rsdiffbeforeafterboth
--- a/runtime/common/config/mod.rs
+++ b/runtime/common/config/mod.rs
@@ -25,5 +25,5 @@
 #[cfg(feature = "governance")]
 pub mod governance;
 
-#[cfg(feature = "test-env")]
+#[cfg(feature = "pallet-test-utils")]
 pub mod test_pallets;
modifiedruntime/common/construct_runtime.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime.rs
+++ b/runtime/common/construct_runtime.rs
@@ -136,7 +136,7 @@
 
 				BalancesAdapter: pallet_balances_adapter = 155,
 
-				#[cfg(feature = "test-env")]
+				#[cfg(feature = "pallet-test-utils")]
 				TestUtils: pallet_test_utils = 255,
 			}
 		}
modifiedruntime/common/maintenance.rsdiffbeforeafterboth
--- a/runtime/common/maintenance.rs
+++ b/runtime/common/maintenance.rs
@@ -85,7 +85,7 @@
 				| RuntimeCall::Session(_)
 				| RuntimeCall::Identity(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
 
-				#[cfg(feature = "test-env")]
+				#[cfg(feature = "pallet-test-utils")]
 				RuntimeCall::TestUtils(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
 
 				_ => Ok(ValidTransaction::default()),
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
before · runtime/opal/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['opal-runtime', 'std']20limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']21opal-runtime = [22	'app-promotion',23	'collator-selection',24	'foreign-assets',25	'governance',26	'test-env',27	'preimage',28	'refungible',29]30pov-estimate = []31runtime-benchmarks = [32	"pallet-preimage/runtime-benchmarks",33	'cumulus-pallet-parachain-system/runtime-benchmarks',34	'frame-benchmarking',35	'frame-support/runtime-benchmarks',36	'frame-system-benchmarking',37	'frame-system/runtime-benchmarks',38	'pallet-app-promotion/runtime-benchmarks',39	'pallet-balances/runtime-benchmarks',40	'pallet-collator-selection/runtime-benchmarks',41	'pallet-common/runtime-benchmarks',42	'pallet-configuration/runtime-benchmarks',43	'pallet-ethereum/runtime-benchmarks',44	'pallet-evm-coder-substrate/runtime-benchmarks',45	'pallet-evm-migration/runtime-benchmarks',46	'pallet-foreign-assets/runtime-benchmarks',47	'pallet-fungible/runtime-benchmarks',48	'pallet-identity/runtime-benchmarks',49	'pallet-inflation/runtime-benchmarks',50	'pallet-maintenance/runtime-benchmarks',51	'pallet-nonfungible/runtime-benchmarks',52	'pallet-democracy/runtime-benchmarks',53	'pallet-collective/runtime-benchmarks',54	'pallet-ranked-collective/runtime-benchmarks',55	'pallet-membership/runtime-benchmarks',56	'pallet-referenda/runtime-benchmarks',57	'pallet-scheduler/runtime-benchmarks',58	'pallet-refungible/runtime-benchmarks',59	'pallet-structure/runtime-benchmarks',60	'pallet-timestamp/runtime-benchmarks',61	'pallet-unique-scheduler-v2/runtime-benchmarks',62	'pallet-unique/runtime-benchmarks',63	'pallet-xcm/runtime-benchmarks',64	'sp-runtime/runtime-benchmarks',65	'xcm-builder/runtime-benchmarks',66]67state-version-0 = []68std = [69	'codec/std',70	'cumulus-pallet-aura-ext/std',71	'cumulus-pallet-parachain-system/std',72	'cumulus-pallet-xcm/std',73	'cumulus-pallet-xcmp-queue/std',74	'cumulus-primitives-core/std',75	'cumulus-primitives-utility/std',76	'frame-executive/std',77	'frame-support/std',78	'frame-system-rpc-runtime-api/std',79	'frame-system/std',80	'frame-try-runtime/std',81	'pallet-aura/std',82	'pallet-balances/std',83	'pallet-democracy/std',84	'pallet-collective/std',85	'pallet-ranked-collective/std',86	'pallet-membership/std',87	'pallet-referenda/std',88	'pallet-gov-origins/std',89	'pallet-scheduler/std',90	# 'pallet-contracts/std',91	# 'pallet-contracts-primitives/std',92	# 'pallet-contracts-rpc-runtime-api/std',93	# 'pallet-contract-helpers/std',94	"pallet-authorship/std",95	"pallet-preimage/std",96	"pallet-session/std",97	"pallet-state-trie-migration/std",98	"sp-consensus-aura/std",99	'app-promotion-rpc/std',100	'evm-coder/std',101	'fp-rpc/std',102	'fp-self-contained/std',103	'pallet-app-promotion/std',104	'pallet-balances-adapter/std',105	'pallet-base-fee/std',106	'pallet-charge-transaction/std',107	'pallet-collator-selection/std',108	'pallet-common/std',109	'pallet-configuration/std',110	'pallet-ethereum/std',111	'pallet-evm-coder-substrate/std',112	'pallet-evm-contract-helpers/std',113	'pallet-evm-migration/std',114	'pallet-evm-transaction-payment/std',115	'pallet-evm/std',116	'pallet-fungible/std',117	'pallet-identity/std',118	'pallet-inflation/std',119	'pallet-nonfungible/std',120	'pallet-refungible/std',121	'pallet-structure/std',122	'pallet-sudo/std',123	'pallet-timestamp/std',124	'pallet-transaction-payment-rpc-runtime-api/std',125	'pallet-transaction-payment/std',126	'pallet-treasury/std',127	'pallet-unique-scheduler-v2/std',128	'pallet-unique/std',129	'parachain-info/std',130	'serde',131	'sp-api/std',132	'sp-block-builder/std',133	'sp-core/std',134	'sp-inherents/std',135	'sp-io/std',136	'sp-offchain/std',137	'sp-runtime/std',138	'sp-session/std',139	'sp-std/std',140	'sp-transaction-pool/std',141	'sp-version/std',142	'up-common/std',143	'up-data-structs/std',144	'up-pov-estimate-rpc/std',145	'up-rpc/std',146	'up-sponsorship/std',147	'xcm-builder/std',148	'xcm-executor/std',149	'xcm/std',150151	"orml-tokens/std",152	"orml-traits/std",153	"orml-vesting/std",154	"orml-xcm-support/std",155	"orml-xtokens/std",156	"pallet-foreign-assets/std",157158	'pallet-maintenance/std',159	'pallet-test-utils/std',160]161try-runtime = [162	"pallet-authorship/try-runtime",163	"pallet-collator-selection/try-runtime",164	"pallet-identity/try-runtime",165	"pallet-preimage/try-runtime",166	"pallet-session/try-runtime",167	"pallet-state-trie-migration/try-runtime",168	'cumulus-pallet-aura-ext/try-runtime',169	'cumulus-pallet-dmp-queue/try-runtime',170	'cumulus-pallet-parachain-system/try-runtime',171	'cumulus-pallet-xcm/try-runtime',172	'cumulus-pallet-xcmp-queue/try-runtime',173	'fp-self-contained/try-runtime',174	'frame-executive/try-runtime',175	'frame-support/try-runtime',176	'frame-system/try-runtime',177	'frame-try-runtime',178	'frame-try-runtime?/try-runtime',179	'orml-tokens/try-runtime',180	'orml-vesting/try-runtime',181	'orml-xtokens/try-runtime',182	'pallet-app-promotion/try-runtime',183	'pallet-aura/try-runtime',184	'pallet-balances-adapter/try-runtime',185	'pallet-balances/try-runtime',186	'pallet-base-fee/try-runtime',187	'pallet-charge-transaction/try-runtime',188	'pallet-collective/try-runtime',189	'pallet-common/try-runtime',190	'pallet-configuration/try-runtime',191	'pallet-democracy/try-runtime',192	'pallet-ethereum/try-runtime',193	'pallet-evm-coder-substrate/try-runtime',194	'pallet-evm-contract-helpers/try-runtime',195	'pallet-evm-migration/try-runtime',196	'pallet-evm-transaction-payment/try-runtime',197	'pallet-evm/try-runtime',198	'pallet-foreign-assets/try-runtime',199	'pallet-fungible/try-runtime',200	'pallet-inflation/try-runtime',201	'pallet-maintenance/try-runtime',202	'pallet-membership/try-runtime',203	'pallet-nonfungible/try-runtime',204	'pallet-democracy/try-runtime',205	'pallet-collective/try-runtime',206	'pallet-ranked-collective/try-runtime',207	'pallet-membership/try-runtime',208	'pallet-referenda/try-runtime',209	'pallet-gov-origins/try-runtime',210	'pallet-scheduler/try-runtime',211	'pallet-refungible/try-runtime',212	'pallet-scheduler/try-runtime',213	'pallet-structure/try-runtime',214	'pallet-sudo/try-runtime',215	'pallet-test-utils/try-runtime',216	'pallet-timestamp/try-runtime',217	'pallet-transaction-payment/try-runtime',218	'pallet-treasury/try-runtime',219	'pallet-unique-scheduler-v2/try-runtime',220	'pallet-unique/try-runtime',221	'pallet-xcm/try-runtime',222	'parachain-info/try-runtime',223]224225app-promotion = []226collator-selection = []227foreign-assets = []228governance = []229test-env = []230preimage = []231refungible = []232unique-scheduler = []233234################################################################################235# local dependencies236237[dependencies]238# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.239codec = { workspace = true, package = "parity-scale-codec" }240241cumulus-pallet-aura-ext = { workspace = true }242cumulus-pallet-dmp-queue = { workspace = true }243cumulus-pallet-parachain-system = { workspace = true }244cumulus-pallet-xcm = { workspace = true }245cumulus-pallet-xcmp-queue = { workspace = true }246cumulus-primitives-core = { workspace = true }247cumulus-primitives-timestamp = { workspace = true }248cumulus-primitives-utility = { workspace = true }249frame-executive = { workspace = true }250frame-support = { workspace = true }251frame-system = { workspace = true }252frame-system-rpc-runtime-api = { workspace = true }253orml-tokens = { workspace = true }254orml-traits = { workspace = true }255orml-vesting = { workspace = true }256orml-xcm-support = { workspace = true }257orml-xtokens = { workspace = true }258pallet-aura = { workspace = true }259pallet-authorship = { workspace = true }260pallet-balances = { features = ["insecure_zero_ed"], workspace = true }261pallet-preimage = { workspace = true }262pallet-session = { workspace = true }263pallet-state-trie-migration = { workspace = true }264pallet-sudo = { workspace = true }265pallet-timestamp = { workspace = true }266pallet-transaction-payment = { workspace = true }267pallet-transaction-payment-rpc-runtime-api = { workspace = true }268pallet-treasury = { workspace = true }269pallet-xcm = { workspace = true }270parachain-info = { workspace = true }271polkadot-parachain = { workspace = true }272smallvec = { workspace = true }273sp-api = { workspace = true }274sp-arithmetic = { workspace = true }275sp-block-builder = { workspace = true }276sp-consensus-aura = { workspace = true }277sp-core = { workspace = true }278sp-inherents = { workspace = true }279sp-io = { workspace = true }280sp-offchain = { workspace = true }281sp-runtime = { workspace = true }282sp-session = { workspace = true }283sp-std = { workspace = true }284sp-transaction-pool = { workspace = true }285sp-version = { workspace = true }286xcm = { workspace = true }287xcm-builder = { workspace = true }288xcm-executor = { workspace = true }289290app-promotion-rpc = { workspace = true }291derivative = { workspace = true }292evm-coder = { workspace = true }293fp-evm = { workspace = true }294fp-rpc = { workspace = true }295fp-self-contained = { workspace = true }296log = { workspace = true }297num_enum = { workspace = true }298pallet-app-promotion = { workspace = true }299pallet-balances-adapter = { workspace = true }300pallet-base-fee = { workspace = true }301pallet-charge-transaction = { workspace = true }302pallet-collator-selection = { workspace = true }303pallet-common = { workspace = true }304pallet-configuration = { workspace = true }305pallet-ethereum = { workspace = true }306pallet-evm = { workspace = true }307pallet-evm-coder-substrate = { workspace = true }308pallet-evm-contract-helpers = { workspace = true }309pallet-evm-migration = { workspace = true }310pallet-evm-precompile-simple = { workspace = true }311pallet-evm-transaction-payment = { workspace = true }312pallet-foreign-assets = { workspace = true }313pallet-fungible = { workspace = true }314pallet-identity = { workspace = true }315pallet-inflation = { workspace = true }316pallet-maintenance = { workspace = true }317pallet-nonfungible = { workspace = true }318pallet-democracy = { workspace = true }319pallet-collective = { workspace = true }320pallet-ranked-collective = { workspace = true }321pallet-membership = { workspace = true }322pallet-referenda = { workspace = true }323pallet-gov-origins = { workspace = true }324pallet-scheduler = { workspace = true }325pallet-refungible = { workspace = true }326pallet-structure = { workspace = true }327pallet-unique = { workspace = true }328pallet-unique-scheduler-v2 = { workspace = true }329precompile-utils-macro = { workspace = true }330scale-info = { workspace = true }331up-common = { workspace = true }332up-data-structs = { workspace = true }333up-pov-estimate-rpc = { workspace = true }334up-rpc = { workspace = true }335up-sponsorship = { workspace = true }336337################################################################################338# Optional dependencies339340frame-benchmarking = { workspace = true, optional = true }341frame-system-benchmarking = { workspace = true, optional = true }342frame-try-runtime = { workspace = true, optional = true }343serde = { workspace = true, optional = true }344345################################################################################346# Test dependencies347348pallet-test-utils = { workspace = true }349350################################################################################351# Other Dependencies352353hex-literal = { workspace = true }354impl-trait-for-tuples = { workspace = true }355356[build-dependencies]357substrate-wasm-builder = { workspace = true }
addedruntime/opal/src/governance_timings.rsdiffbeforeafterboth
--- /dev/null
+++ b/runtime/opal/src/governance_timings.rs
@@ -0,0 +1,54 @@
+use frame_support::parameter_types;
+pub use up_common::{
+	constants::{DAYS, HOURS, MINUTES},
+	types::BlockNumber,
+};
+
+pub mod council {
+	use super::*;
+
+	parameter_types! {
+		pub CouncilMotionDuration: BlockNumber = 1 * HOURS;
+	}
+}
+
+pub mod democracy {
+	use super::*;
+
+	parameter_types! {
+		pub LaunchPeriod: BlockNumber = 1 * HOURS;
+		pub VotingPeriod: BlockNumber = 1 * HOURS;
+		pub FastTrackVotingPeriod: BlockNumber = 10 * MINUTES;
+		pub EnactmentPeriod: BlockNumber = 5 * MINUTES;
+		pub CooloffPeriod: BlockNumber = 1 * HOURS;
+	}
+}
+
+pub mod fellowship {
+	use super::*;
+
+	parameter_types! {
+		pub UndecidingTimeout: BlockNumber = 1 * HOURS;
+	}
+
+	pub mod track {
+		use super::*;
+
+		pub mod democracy_proposals {
+			use super::*;
+
+			pub const PREPARE_PERIOD: BlockNumber = 5 * MINUTES;
+			pub const DECISION_PERIOD: BlockNumber = 1 * HOURS;
+			pub const CONFIRM_PERIOD: BlockNumber = 10 * MINUTES;
+			pub const MIN_ENACTMENT_PERIOD: BlockNumber = 1 * MINUTES;
+		}
+	}
+}
+
+pub mod technical_committee {
+	use super::*;
+
+	parameter_types! {
+		pub TechnicalMotionDuration: BlockNumber = 15 * MINUTES;
+	}
+}
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -38,6 +38,7 @@
 
 mod runtime_common;
 
+pub mod governance_timings;
 pub mod xcm_barrier;
 
 pub use runtime_common::*;
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -218,7 +218,7 @@
 preimage = []
 refungible = []
 unique-scheduler = []
-test-env = []
+gov-test-timings = []
 
 ################################################################################
 # local dependencies
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -221,7 +221,7 @@
 preimage = []
 refungible = []
 unique-scheduler = []
-test-env = []
+gov-test-timings = []
 
 ################################################################################
 # local dependencies