difftreelog
Merge pull request #978 from UniqueNetwork/fix/opal-governance-timings
in: master
14 files changed
.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
.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)
runtime/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::*;
runtime/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::*;
runtime/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::*;
runtime/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::*;
runtime/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;
runtime/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,
}
}
runtime/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()),
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -23,7 +23,7 @@
'collator-selection',
'foreign-assets',
'governance',
- 'test-env',
+ 'pallet-test-utils',
'preimage',
'refungible',
]
@@ -156,7 +156,7 @@
"pallet-foreign-assets/std",
'pallet-maintenance/std',
- 'pallet-test-utils/std',
+ 'pallet-test-utils?/std',
]
try-runtime = [
"pallet-authorship/try-runtime",
@@ -212,7 +212,7 @@
'pallet-scheduler/try-runtime',
'pallet-structure/try-runtime',
'pallet-sudo/try-runtime',
- 'pallet-test-utils/try-runtime',
+ 'pallet-test-utils?/try-runtime',
'pallet-timestamp/try-runtime',
'pallet-transaction-payment/try-runtime',
'pallet-treasury/try-runtime',
@@ -226,7 +226,7 @@
collator-selection = []
foreign-assets = []
governance = []
-test-env = []
+gov-test-timings = []
preimage = []
refungible = []
unique-scheduler = []
@@ -345,7 +345,7 @@
################################################################################
# Test dependencies
-pallet-test-utils = { workspace = true }
+pallet-test-utils = { workspace = true, optional = true }
################################################################################
# Other Dependencies
runtime/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;
+ }
+}
runtime/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::*;
runtime/quartz/Cargo.tomldiffbeforeafterboth1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Quartz Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'quartz-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19become-sapphire = []20default = ['quartz-runtime', 'std']21limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']22pov-estimate = []23quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'governance', 'preimage', 'refungible']24runtime-benchmarks = [25 "pallet-preimage/runtime-benchmarks",26 'cumulus-pallet-parachain-system/runtime-benchmarks',27 'frame-benchmarking',28 'frame-support/runtime-benchmarks',29 'frame-system-benchmarking',30 'frame-system/runtime-benchmarks',31 'pallet-app-promotion/runtime-benchmarks',32 'pallet-balances/runtime-benchmarks',33 'pallet-collator-selection/runtime-benchmarks',34 'pallet-collective/runtime-benchmarks',35 'pallet-common/runtime-benchmarks',36 'pallet-configuration/runtime-benchmarks',37 'pallet-democracy/runtime-benchmarks',38 'pallet-ethereum/runtime-benchmarks',39 'pallet-evm-coder-substrate/runtime-benchmarks',40 'pallet-evm-migration/runtime-benchmarks',41 'pallet-foreign-assets/runtime-benchmarks',42 'pallet-fungible/runtime-benchmarks',43 'pallet-identity/runtime-benchmarks',44 'pallet-inflation/runtime-benchmarks',45 'pallet-maintenance/runtime-benchmarks',46 'pallet-membership/runtime-benchmarks',47 'pallet-nonfungible/runtime-benchmarks',48 'pallet-democracy/runtime-benchmarks',49 'pallet-collective/runtime-benchmarks',50 'pallet-ranked-collective/runtime-benchmarks',51 'pallet-membership/runtime-benchmarks',52 'pallet-referenda/runtime-benchmarks',53 'pallet-scheduler/runtime-benchmarks',54 'pallet-refungible/runtime-benchmarks',55 'pallet-scheduler/runtime-benchmarks',56 'pallet-structure/runtime-benchmarks',57 'pallet-timestamp/runtime-benchmarks',58 'pallet-unique/runtime-benchmarks',59 'pallet-xcm/runtime-benchmarks',60 'sp-runtime/runtime-benchmarks',61 'xcm-builder/runtime-benchmarks',62]63state-version-0 = []64std = [65 'codec/std',66 'cumulus-pallet-aura-ext/std',67 'cumulus-pallet-parachain-system/std',68 'cumulus-pallet-xcm/std',69 'cumulus-pallet-xcmp-queue/std',70 'cumulus-primitives-core/std',71 'cumulus-primitives-utility/std',72 'frame-executive/std',73 'frame-support/std',74 'frame-system-rpc-runtime-api/std',75 'frame-system/std',76 'frame-try-runtime/std',77 'pallet-aura/std',78 'pallet-balances-adapter/std',79 'pallet-balances/std',80 'pallet-collective/std',81 'pallet-democracy/std',82 'pallet-membership/std',83 'pallet-scheduler/std',84 # 'pallet-contracts/std',85 # 'pallet-contracts-primitives/std',86 # 'pallet-contracts-rpc-runtime-api/std',87 # 'pallet-contract-helpers/std',88 "pallet-authorship/std",89 "pallet-identity/std",90 "pallet-preimage/std",91 "pallet-session/std",92 "pallet-state-trie-migration/std",93 "sp-consensus-aura/std",94 'app-promotion-rpc/std',95 'evm-coder/std',96 'fp-rpc/std',97 'fp-self-contained/std',98 'pallet-app-promotion/std',99 'pallet-base-fee/std',100 'pallet-charge-transaction/std',101 'pallet-collator-selection/std',102 'pallet-common/std',103 'pallet-configuration/std',104 'pallet-ethereum/std',105 'pallet-evm-coder-substrate/std',106 'pallet-evm-contract-helpers/std',107 'pallet-evm-migration/std',108 'pallet-evm-transaction-payment/std',109 'pallet-evm/std',110 'pallet-fungible/std',111 'pallet-inflation/std',112 'pallet-nonfungible/std',113 'pallet-democracy/std',114 'pallet-collective/std',115 'pallet-ranked-collective/std',116 'pallet-membership/std',117 'pallet-referenda/std',118 'pallet-gov-origins/std',119 'pallet-scheduler/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/std',128 'parachain-info/std',129 'serde',130 'sp-api/std',131 'sp-block-builder/std',132 'sp-core/std',133 'sp-inherents/std',134 'sp-io/std',135 'sp-offchain/std',136 'sp-runtime/std',137 'sp-session/std',138 'sp-std/std',139 'sp-transaction-pool/std',140 'sp-version/std',141 'up-common/std',142 'up-data-structs/std',143 'up-pov-estimate-rpc/std',144 'up-rpc/std',145 'up-sponsorship/std',146 'xcm-builder/std',147 'xcm-executor/std',148 'xcm/std',149150 "orml-tokens/std",151 "orml-traits/std",152 "orml-vesting/std",153 "orml-xcm-support/std",154 "orml-xtokens/std",155 "pallet-foreign-assets/std",156 "pallet-maintenance/std",157]158try-runtime = [159 "pallet-authorship/try-runtime",160 "pallet-collator-selection/try-runtime",161 "pallet-identity/try-runtime",162 "pallet-preimage/try-runtime",163 "pallet-session/try-runtime",164 "pallet-state-trie-migration/try-runtime",165 'cumulus-pallet-aura-ext/try-runtime',166 'cumulus-pallet-dmp-queue/try-runtime',167 'cumulus-pallet-parachain-system/try-runtime',168 'cumulus-pallet-xcm/try-runtime',169 'cumulus-pallet-xcmp-queue/try-runtime',170 'fp-self-contained/try-runtime',171 'frame-executive/try-runtime',172 'frame-support/try-runtime',173 'frame-system/try-runtime',174 'frame-try-runtime',175 'orml-tokens/try-runtime',176 'orml-vesting/try-runtime',177 'orml-xtokens/try-runtime',178 'pallet-app-promotion/try-runtime',179 'pallet-aura/try-runtime',180 'pallet-balances-adapter/try-runtime',181 'pallet-balances/try-runtime',182 'pallet-charge-transaction/try-runtime',183 'pallet-common/try-runtime',184 'pallet-configuration/try-runtime',185 'pallet-ethereum/try-runtime',186 'pallet-evm-coder-substrate/try-runtime',187 'pallet-evm-contract-helpers/try-runtime',188 'pallet-evm-migration/try-runtime',189 'pallet-evm-transaction-payment/try-runtime',190 'pallet-evm/try-runtime',191 'pallet-foreign-assets/try-runtime',192 'pallet-fungible/try-runtime',193 'pallet-inflation/try-runtime',194 'pallet-maintenance/try-runtime',195 'pallet-nonfungible/try-runtime',196 'pallet-democracy/try-runtime',197 'pallet-collective/try-runtime',198 'pallet-ranked-collective/try-runtime',199 'pallet-membership/try-runtime',200 'pallet-referenda/try-runtime',201 'pallet-gov-origins/try-runtime',202 'pallet-scheduler/try-runtime',203 'pallet-refungible/try-runtime',204 'pallet-structure/try-runtime',205 'pallet-sudo/try-runtime',206 'pallet-timestamp/try-runtime',207 'pallet-transaction-payment/try-runtime',208 'pallet-treasury/try-runtime',209 'pallet-unique/try-runtime',210 'pallet-xcm/try-runtime',211 'parachain-info/try-runtime',212]213214app-promotion = []215collator-selection = []216foreign-assets = []217governance = []218preimage = []219refungible = []220unique-scheduler = []221test-env = []222223################################################################################224# local dependencies225226[dependencies]227# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.228codec = { workspace = true, package = "parity-scale-codec" }229230cumulus-pallet-aura-ext = { workspace = true }231cumulus-pallet-dmp-queue = { workspace = true }232cumulus-pallet-parachain-system = { workspace = true }233cumulus-pallet-xcm = { workspace = true }234cumulus-pallet-xcmp-queue = { workspace = true }235cumulus-primitives-core = { workspace = true }236cumulus-primitives-timestamp = { workspace = true }237cumulus-primitives-utility = { workspace = true }238frame-executive = { workspace = true }239frame-support = { workspace = true }240frame-system = { workspace = true }241frame-system-rpc-runtime-api = { workspace = true }242orml-tokens = { workspace = true }243orml-traits = { workspace = true }244orml-vesting = { workspace = true }245orml-xcm-support = { workspace = true }246orml-xtokens = { workspace = true }247pallet-aura = { workspace = true }248pallet-authorship = { workspace = true }249pallet-balances = { features = ["insecure_zero_ed"], workspace = true }250pallet-preimage = { workspace = true }251pallet-session = { workspace = true }252pallet-state-trie-migration = { workspace = true }253pallet-sudo = { workspace = true }254pallet-timestamp = { workspace = true }255pallet-transaction-payment = { workspace = true }256pallet-transaction-payment-rpc-runtime-api = { workspace = true }257pallet-treasury = { workspace = true }258pallet-xcm = { workspace = true }259parachain-info = { workspace = true }260polkadot-parachain = { workspace = true }261smallvec = { workspace = true }262sp-api = { workspace = true }263sp-arithmetic = { workspace = true }264sp-block-builder = { workspace = true }265sp-consensus-aura = { workspace = true }266sp-core = { workspace = true }267sp-inherents = { workspace = true }268sp-io = { workspace = true }269sp-offchain = { workspace = true }270sp-runtime = { workspace = true }271sp-session = { workspace = true }272sp-std = { workspace = true }273sp-transaction-pool = { workspace = true }274sp-version = { workspace = true }275xcm = { workspace = true }276xcm-builder = { workspace = true }277xcm-executor = { workspace = true }278279app-promotion-rpc = { workspace = true }280derivative = { workspace = true }281fp-evm = { workspace = true }282log = { workspace = true }283pallet-app-promotion = { workspace = true }284pallet-balances-adapter = { workspace = true }285pallet-collator-selection = { workspace = true }286pallet-common = { workspace = true }287pallet-configuration = { workspace = true }288pallet-fungible = { workspace = true }289pallet-identity = { workspace = true }290pallet-inflation = { workspace = true }291pallet-nonfungible = { workspace = true }292pallet-democracy = { workspace = true }293pallet-collective = { workspace = true }294pallet-ranked-collective = { workspace = true }295pallet-membership = { workspace = true }296pallet-referenda = { workspace = true }297pallet-gov-origins = { workspace = true }298pallet-scheduler = { workspace = true }299pallet-refungible = { workspace = true }300pallet-structure = { workspace = true }301pallet-unique = { workspace = true }302scale-info = { workspace = true }303up-common = { workspace = true }304up-data-structs = { workspace = true }305up-pov-estimate-rpc = { workspace = true }306up-rpc = { workspace = true }307# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }308evm-coder = { workspace = true }309fp-rpc = { workspace = true }310fp-self-contained = { workspace = true }311num_enum = { version = "0.5.3", default-features = false }312pallet-base-fee = { workspace = true }313pallet-charge-transaction = { workspace = true }314pallet-ethereum = { workspace = true }315pallet-evm = { workspace = true }316pallet-evm-coder-substrate = { workspace = true }317pallet-evm-contract-helpers = { workspace = true }318pallet-evm-migration = { workspace = true }319pallet-evm-precompile-simple = { workspace = true }320pallet-evm-transaction-payment = { workspace = true }321pallet-foreign-assets = { workspace = true }322pallet-maintenance = { workspace = true }323precompile-utils-macro = { workspace = true }324up-sponsorship = { workspace = true }325326################################################################################327# Optional dependencies328329frame-benchmarking = { workspace = true, optional = true }330frame-system-benchmarking = { workspace = true, optional = true }331frame-try-runtime = { workspace = true, optional = true }332serde = { workspace = true, optional = true }333334335################################################################################336# Test dependencies337338pallet-test-utils = { workspace = true }339340################################################################################341# Other Dependencies342343hex-literal = { workspace = true }344impl-trait-for-tuples = { workspace = true }345346[build-dependencies]347substrate-wasm-builder = { workspace = true }runtime/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