git.delta.rocks / unique-network / refs/commits / 308a52eaeb70

difftreelog

Merge pull request #660 from UniqueNetwork/fix/merge-929030

Yaroslav Bolyukin2022-10-18parents: #67c56fa #e5efe22.patch.diff
in: master
Fix/merge 929030

15 files changed

modified.docker/Dockerfile-try-runtimediffbeforeafterboth
--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -46,5 +46,4 @@
     echo "Fork from: $REPLICA_FROM\n" && \
     cargo build --features=$FEATURE --release
     
-
-CMD cargo run --features=try-runtime,$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $REPLICA_FROM
+CMD cargo run --features=try-runtime,$FEATURE --release -- try-runtime --no-spec-name-check on-runtime-upgrade live --uri $REPLICA_FROM
modified.envdiffbeforeafterboth
--- a/.env
+++ b/.env
@@ -5,7 +5,7 @@
 UNIQUE_MAINNET_TAG=v924010
 
 KUSAMA_MAINNET_BRANCH=release-v0.9.26
-QUARTZ_MAINNET_TAG=quartz-v924012-2
+QUARTZ_MAINNET_TAG=quartz-v924012-2-opal-runtime-feature
 
 UNQWND_MAINNET_BRANCH=release-v0.9.24
 
modified.github/workflows/market-test_v2.ymldiffbeforeafterboth
--- a/.github/workflows/market-test_v2.yml
+++ b/.github/workflows/market-test_v2.yml
@@ -10,8 +10,8 @@
 
   market_test:
     # The type of runner that the job will run on
-    runs-on: [self-hosted-ci,large]
-    timeout-minutes: 1380
+    runs-on: [self-hosted-ci,medium]
+    timeout-minutes: 180
 
     name: ${{ matrix.network }}    
 
@@ -91,12 +91,20 @@
           rm -rf .env
           cp .env.docker .env
 
+# Temporary disable node readyness check. Have to dig into the script logic.
+#      - name: Wait for chain up and running
+#        working-directory: tests
+#        run: |
+#          yarn install
+#          node scripts/readyness.js
+#          echo "Ready to start tests"
+#        env:
+#          RPC_URL: http://127.0.0.1:9933/
+
       - name: Wait for chain up and running
-        working-directory: tests
         run: |
-          yarn install
-          node scripts/readyness.js
-          echo "Ready to start tests"
+          sleep 1200s
+          echo "Ready to start Market e2e tests"
 
       - name: Show content of .env file and Generate accounts
         working-directory: qa-tests
@@ -184,7 +192,6 @@
       - name: Clean Workspace
         if: always()
         uses: AutoModality/action-clean@v1.1.0
-
 
 
 
modified.github/workflows/node-only-update_v2.ymldiffbeforeafterboth
--- a/.github/workflows/node-only-update_v2.yml
+++ b/.github/workflows/node-only-update_v2.yml
@@ -49,7 +49,7 @@
 
 
 
-    timeout-minutes: 1380
+    timeout-minutes: 2880
 
     name: ${{ matrix.network }}
 
@@ -170,7 +170,7 @@
           yarn add mochawesome
           echo "Ready to start tests"
           yarn polkadot-types
-          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}
+          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-before-${NOW}
         env:
           RPC_URL: http://127.0.0.1:9933/
 
@@ -180,20 +180,35 @@
         if: success() || failure()    # run this step even if previous step failed
         with:
           name: Tests before node upgrade ${{ matrix.network }}            # Name of the check run which will be created
-          path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-*.json    # Path to test results
+          path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-before-*.json    # Path to test results
           reporter: mochawesome-json
           fail-on-error: 'false'
 
-      - name: Send SIGUSR1 to polkadotlaunch process
+      - name: Send SIGUSR1 to polkadot-launch process
         if: success() || failure()
         run: |
-          #Get PID of polkadot-launch
+          ContainerID=$(docker ps -aqf "name=node-parachain")
           PID=$(docker exec node-parachain pidof 'polkadot-launch')
-          echo "Polkadot-launch PID: $PID"
-          #Send SIGUSR1 signal to $PID
+          sleep 30s
+          echo -e "Show logs of node-parachain container.\n"
+          docker logs ${ContainerID}
+          echo -e "\n"
+          echo -e "Restart polkadot-launch process: $PID\n"
           docker exec node-parachain kill -SIGUSR1 ${PID}
+          echo -e "SIGUSR1 sent to Polkadot-launch PID: $PID\n"
+          echo -e "Get node-parachain logs:\n"
+          docker logs -t -n 5 ${ContainerID}
+      
+      - name: Get chain logs
+        if: failure()                   # run this step only at failure
+        run: |
+          docker exec node-parachain cat /polkadot-launch/9944.log
+          docker exec node-parachain cat /polkadot-launch/9945.log
+          docker exec node-parachain cat /polkadot-launch/alice.log
+          docker exec node-parachain cat /polkadot-launch/eve.log
+          docker exec node-parachain cat /polkadot-launch/dave.log
+          docker exec node-parachain cat /polkadot-launch/charlie.log             
 
-      #  🌗 All parachain collators restarted with the new binaries.
       - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade.
         if: success()
         run: |
@@ -240,14 +255,14 @@
         shell: bash
 
       - name: Run tests after Node Parachain upgrade
-        working-directory: tests
+        if: success()
+        working-directory: ${{ matrix.mainnet_branch }}/tests
         run: |
           yarn install
           yarn add mochawesome
-          node scripts/readyness.js
           echo "Ready to start tests"
           yarn polkadot-types
-          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}
+          NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-after-${NOW}
         env:
           RPC_URL: http://127.0.0.1:9933/
 
@@ -257,7 +272,7 @@
         if: success() || failure()    # run this step even if previous step failed
         with:
           name: Tests after node upgrade ${{ matrix.network }}            # Name of the check run which will be created
-          path: tests/mochawesome-report/test-*.json    # Path to test results
+          path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-after-*.json    # Path to test results
           reporter: mochawesome-json
           fail-on-error: 'false'
 
modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6711,6 +6711,24 @@
 ]
 
 [[package]]
+name = "pallet-unique-scheduler-v2"
+version = "0.1.0"
+dependencies = [
+ "frame-benchmarking",
+ "frame-support",
+ "frame-system",
+ "log",
+ "pallet-preimage",
+ "parity-scale-codec 3.2.1",
+ "scale-info",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "substrate-test-utils",
+]
+
+[[package]]
 name = "pallet-utility"
 version = "4.0.0-dev"
 source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.29#cc370aa61e15c18d23a2f686b812fd576a630afe"
@@ -8576,7 +8594,7 @@
 
 [[package]]
 name = "quartz-runtime"
-version = "0.9.27"
+version = "0.9.29"
 dependencies = [
  "app-promotion-rpc",
  "cumulus-pallet-aura-ext",
@@ -12568,7 +12586,7 @@
 
 [[package]]
 name = "unique-runtime"
-version = "0.9.27"
+version = "0.9.29"
 dependencies = [
  "app-promotion-rpc",
  "cumulus-pallet-aura-ext",
modifiedREADME.mddiffbeforeafterboth
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@
 ```
 git clone https://github.com/paritytech/polkadot.git
 cd polkadot
-git checkout release-v0.9.27
+git checkout release-v0.9.29
 cargo build --release
 ```
 
modifiedruntime/common/construct_runtime/mod.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime/mod.rs
+++ b/runtime/common/construct_runtime/mod.rs
@@ -57,8 +57,8 @@
                 Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,
                 Unique: pallet_unique::{Pallet, Call, Storage, Event<T>} = 61,
 
-                #[runtimes(opal)]
-                Scheduler: pallet_unique_scheduler::{Pallet, Call, Storage, Event<T>} = 62,
+                // #[runtimes(opal)]
+                // Scheduler: pallet_unique_scheduler::{Pallet, Call, Storage, Event<T>} = 62,
 
                 Configuration: pallet_configuration::{Pallet, Call, Storage} = 63,
 
modifiedruntime/common/mod.rsdiffbeforeafterboth
--- a/runtime/common/mod.rs
+++ b/runtime/common/mod.rs
@@ -20,7 +20,10 @@
 pub mod ethereum;
 pub mod instance;
 pub mod runtime_apis;
+
+#[cfg(feature = "scheduler")]
 pub mod scheduler;
+
 pub mod sponsoring;
 pub mod weights;
 
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 = "0.9.29"1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'opal-runtime']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-ethereum/runtime-benchmarks',27    'pallet-evm-migration/runtime-benchmarks',28    'pallet-evm-coder-substrate/runtime-benchmarks',29    'pallet-balances/runtime-benchmarks',30    'pallet-timestamp/runtime-benchmarks',31    'pallet-common/runtime-benchmarks',32    'pallet-structure/runtime-benchmarks',33    'pallet-fungible/runtime-benchmarks',34    'pallet-refungible/runtime-benchmarks',35    'pallet-nonfungible/runtime-benchmarks',36    'pallet-proxy-rmrk-core/runtime-benchmarks',37    'pallet-proxy-rmrk-equip/runtime-benchmarks',38    'pallet-foreign-assets/runtime-benchmarks',39    'pallet-unique/runtime-benchmarks',40    'pallet-inflation/runtime-benchmarks',41    'pallet-app-promotion/runtime-benchmarks',42    'pallet-unique-scheduler/runtime-benchmarks',43    'pallet-xcm/runtime-benchmarks',44    'sp-runtime/runtime-benchmarks',45    'xcm-builder/runtime-benchmarks',46]47try-runtime = [48    'frame-try-runtime',49    'frame-executive/try-runtime',50    'frame-support/try-runtime',51    'frame-system/try-runtime',52    'cumulus-pallet-parachain-system/try-runtime',53    'parachain-info/try-runtime',54    'pallet-aura/try-runtime',55    'cumulus-pallet-aura-ext/try-runtime',56    'pallet-balances/try-runtime',57    'pallet-randomness-collective-flip/try-runtime',58    'pallet-timestamp/try-runtime',59    'pallet-transaction-payment/try-runtime',60    'pallet-treasury/try-runtime',61    'pallet-sudo/try-runtime',62    'orml-vesting/try-runtime',63    'orml-xtokens/try-runtime',64    'orml-tokens/try-runtime',65    'cumulus-pallet-xcmp-queue/try-runtime',66    'pallet-xcm/try-runtime',67    'cumulus-pallet-xcm/try-runtime',68    'cumulus-pallet-dmp-queue/try-runtime',69    'pallet-inflation/try-runtime',70    'pallet-unique/try-runtime',71    'pallet-unique-scheduler/try-runtime',72    'pallet-configuration/try-runtime',73    'pallet-charge-transaction/try-runtime',74    'pallet-common/try-runtime',75    'pallet-fungible/try-runtime',76    'pallet-refungible/try-runtime',77    'pallet-nonfungible/try-runtime',78    'pallet-structure/try-runtime',79    'pallet-proxy-rmrk-core/try-runtime',80    'pallet-proxy-rmrk-equip/try-runtime',81    'pallet-app-promotion/try-runtime',82    'pallet-foreign-assets/try-runtime',83    'pallet-evm/try-runtime',84    'pallet-ethereum/try-runtime',85    'pallet-evm-coder-substrate/try-runtime',86    'pallet-evm-contract-helpers/try-runtime',87    'pallet-evm-transaction-payment/try-runtime',88    'pallet-evm-migration/try-runtime',89]90std = [91    'codec/std',92    'cumulus-pallet-aura-ext/std',93    'cumulus-pallet-parachain-system/std',94    'cumulus-pallet-xcm/std',95    'cumulus-pallet-xcmp-queue/std',96    'cumulus-primitives-core/std',97    'cumulus-primitives-utility/std',98    'frame-try-runtime/std',99    'frame-executive/std',100    'frame-support/std',101    'frame-system/std',102    'frame-system-rpc-runtime-api/std',103    'pallet-aura/std',104    'pallet-balances/std',105    # 'pallet-contracts/std',106    # 'pallet-contracts-primitives/std',107    # 'pallet-contracts-rpc-runtime-api/std',108    # 'pallet-contract-helpers/std',109    'pallet-randomness-collective-flip/std',110    'pallet-sudo/std',111    'pallet-timestamp/std',112    'pallet-transaction-payment/std',113    'pallet-transaction-payment-rpc-runtime-api/std',114    'pallet-treasury/std',115    # 'pallet-vesting/std',116    'pallet-evm/std',117    'pallet-evm-migration/std',118    'pallet-evm-contract-helpers/std',119    'pallet-evm-transaction-payment/std',120    'pallet-evm-coder-substrate/std',121    'pallet-ethereum/std',122    'pallet-base-fee/std',123    'fp-rpc/std',124    'up-rpc/std',125    'app-promotion-rpc/std',126    'fp-evm-mapping/std',127    'fp-self-contained/std',128    'parachain-info/std',129    'serde',130    'pallet-inflation/std',131    'pallet-configuration/std',132    'pallet-app-promotion/std',133    'pallet-common/std',134    'pallet-structure/std',135    'pallet-fungible/std',136    'pallet-refungible/std',137    'pallet-nonfungible/std',138    'pallet-proxy-rmrk-core/std',139    'pallet-proxy-rmrk-equip/std',140    'pallet-unique/std',141    'pallet-unique-scheduler/std',142    'pallet-charge-transaction/std',143    'up-data-structs/std',144    'sp-api/std',145    'sp-block-builder/std',146    "sp-consensus-aura/std",147    'sp-core/std',148    'sp-inherents/std',149    'sp-io/std',150    'sp-offchain/std',151    'sp-runtime/std',152    'sp-session/std',153    'sp-std/std',154    'sp-transaction-pool/std',155    'sp-version/std',156    'xcm/std',157    'xcm-builder/std',158    'xcm-executor/std',159    'up-common/std',160    'rmrk-rpc/std',161    'evm-coder/std',162    'up-sponsorship/std',163164    "orml-vesting/std",165    "orml-tokens/std",166    "orml-xtokens/std",167    "orml-traits/std",168    "pallet-foreign-assets/std"169]170limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']171opal-runtime = ['refungible', 'scheduler', 'rmrk', 'app-promotion', 'foreign-assets']172173refungible = []174scheduler = []175rmrk = []176foreign-assets = []177app-promotion = []178179################################################################################180# Substrate Dependencies181182[dependencies.codec]183default-features = false184features = ['derive']185package = 'parity-scale-codec'186version = '3.1.2'187188[dependencies.frame-benchmarking]189default-features = false190git = "https://github.com/paritytech/substrate"191optional = true192branch = "polkadot-v0.9.29"193194[dependencies.frame-try-runtime]195default-features = false196git = "https://github.com/paritytech/substrate"197optional = true198branch = "polkadot-v0.9.29"199200[dependencies.frame-executive]201default-features = false202git = "https://github.com/paritytech/substrate"203branch = "polkadot-v0.9.29"204205[dependencies.frame-support]206default-features = false207git = "https://github.com/paritytech/substrate"208branch = "polkadot-v0.9.29"209210[dependencies.frame-system]211default-features = false212git = "https://github.com/paritytech/substrate"213branch = "polkadot-v0.9.29"214215[dependencies.frame-system-benchmarking]216default-features = false217git = "https://github.com/paritytech/substrate"218optional = true219branch = "polkadot-v0.9.29"220221[dependencies.frame-system-rpc-runtime-api]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.29"225226[dependencies.hex-literal]227optional = true228version = '0.3.3'229230[dependencies.serde]231default-features = false232features = ['derive']233optional = true234version = '1.0.130'235236[dependencies.pallet-aura]237default-features = false238git = "https://github.com/paritytech/substrate"239branch = "polkadot-v0.9.29"240241[dependencies.pallet-balances]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.29"245246# Contracts specific packages247# [dependencies.pallet-contracts]248# git = 'https://github.com/paritytech/substrate'249# default-features = false250# branch = 'master'251# version = '4.0.0-dev'252253# [dependencies.pallet-contracts-primitives]254# git = 'https://github.com/paritytech/substrate'255# default-features = false256# branch = 'master'257# version = '4.0.0-dev'258259# [dependencies.pallet-contracts-rpc-runtime-api]260# git = 'https://github.com/paritytech/substrate'261# default-features = false262# branch = 'master'263# version = '4.0.0-dev'264265[dependencies.pallet-randomness-collective-flip]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.29"269270[dependencies.pallet-sudo]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.29"274275[dependencies.pallet-timestamp]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.29"279280[dependencies.pallet-transaction-payment]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.29"284285[dependencies.pallet-transaction-payment-rpc-runtime-api]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.29"289290[dependencies.pallet-treasury]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.29"294295# [dependencies.pallet-vesting]296# default-features = false297# git = 'https://github.com/paritytech/substrate'298# branch = 'master'299300[dependencies.sp-arithmetic]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.29"304305[dependencies.sp-api]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.29"309310[dependencies.sp-block-builder]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.29"314315[dependencies.sp-core]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.29"319320[dependencies.sp-consensus-aura]321default-features = false322git = "https://github.com/paritytech/substrate"323branch = "polkadot-v0.9.29"324325[dependencies.sp-inherents]326default-features = false327git = "https://github.com/paritytech/substrate"328branch = "polkadot-v0.9.29"329330[dependencies.sp-io]331default-features = false332git = "https://github.com/paritytech/substrate"333branch = "polkadot-v0.9.29"334335[dependencies.sp-offchain]336default-features = false337git = "https://github.com/paritytech/substrate"338branch = "polkadot-v0.9.29"339340[dependencies.sp-runtime]341default-features = false342git = "https://github.com/paritytech/substrate"343branch = "polkadot-v0.9.29"344345[dependencies.sp-session]346default-features = false347git = "https://github.com/paritytech/substrate"348branch = "polkadot-v0.9.29"349350[dependencies.sp-std]351default-features = false352git = "https://github.com/paritytech/substrate"353branch = "polkadot-v0.9.29"354355[dependencies.sp-transaction-pool]356default-features = false357git = "https://github.com/paritytech/substrate"358branch = "polkadot-v0.9.29"359360[dependencies.sp-version]361default-features = false362git = "https://github.com/paritytech/substrate"363branch = "polkadot-v0.9.29"364365[dependencies.smallvec]366version = '1.6.1'367368################################################################################369# Cumulus dependencies370371[dependencies.parachain-info]372default-features = false373git = "https://github.com/paritytech/cumulus"374branch = "polkadot-v0.9.29"375376[dependencies.cumulus-pallet-aura-ext]377git = "https://github.com/paritytech/cumulus"378branch = "polkadot-v0.9.29"379default-features = false380381[dependencies.cumulus-pallet-parachain-system]382git = "https://github.com/paritytech/cumulus"383branch = "polkadot-v0.9.29"384default-features = false385386[dependencies.cumulus-primitives-core]387git = "https://github.com/paritytech/cumulus"388branch = "polkadot-v0.9.29"389default-features = false390391[dependencies.cumulus-pallet-xcm]392git = "https://github.com/paritytech/cumulus"393branch = "polkadot-v0.9.29"394default-features = false395396[dependencies.cumulus-pallet-dmp-queue]397git = "https://github.com/paritytech/cumulus"398branch = "polkadot-v0.9.29"399default-features = false400401[dependencies.cumulus-pallet-xcmp-queue]402git = "https://github.com/paritytech/cumulus"403branch = "polkadot-v0.9.29"404default-features = false405406[dependencies.cumulus-primitives-utility]407git = "https://github.com/paritytech/cumulus"408branch = "polkadot-v0.9.29"409default-features = false410411[dependencies.cumulus-primitives-timestamp]412git = "https://github.com/paritytech/cumulus"413branch = "polkadot-v0.9.29"414default-features = false415416################################################################################417# Polkadot dependencies418419[dependencies.polkadot-parachain]420git = "https://github.com/paritytech/polkadot"421branch = "release-v0.9.29"422default-features = false423424[dependencies.xcm]425git = "https://github.com/paritytech/polkadot"426branch = "release-v0.9.29"427default-features = false428429[dependencies.xcm-builder]430git = "https://github.com/paritytech/polkadot"431branch = "release-v0.9.29"432default-features = false433434[dependencies.xcm-executor]435git = "https://github.com/paritytech/polkadot"436branch = "release-v0.9.29"437default-features = false438439[dependencies.pallet-xcm]440git = "https://github.com/paritytech/polkadot"441branch = "release-v0.9.29"442default-features = false443444[dependencies.orml-vesting]445git = "https://github.com/UniqueNetwork/open-runtime-module-library"446branch = "polkadot-v0.9.29"447version = "0.4.1-dev"448default-features = false449450[dependencies.orml-xtokens]451git = "https://github.com/UniqueNetwork/open-runtime-module-library"452branch = "polkadot-v0.9.29"453version = "0.4.1-dev"454default-features = false455456[dependencies.orml-tokens]457git = "https://github.com/UniqueNetwork/open-runtime-module-library"458branch = "polkadot-v0.9.29"459version = "0.4.1-dev"460default-features = false461462[dependencies.orml-traits]463git = "https://github.com/UniqueNetwork/open-runtime-module-library"464branch = "polkadot-v0.9.29"465version = "0.4.1-dev"466default-features = false467468################################################################################469# local dependencies470471[dependencies]472log = { version = "0.4.16", default-features = false }473up-common = { path = "../../primitives/common", default-features = false }474scale-info = { version = "2.0.1", default-features = false, features = [475    "derive",476] }477derivative = "2.2.0"478pallet-unique = { path = '../../pallets/unique', default-features = false }479up-rpc = { path = "../../primitives/rpc", default-features = false }480app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}481rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }482fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }483pallet-inflation = { path = '../../pallets/inflation', default-features = false }484pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }485up-data-structs = { path = '../../primitives/data-structs', default-features = false }486pallet-configuration = { default-features = false, path = "../../pallets/configuration" }487pallet-common = { default-features = false, path = "../../pallets/common" }488pallet-structure = { default-features = false, path = "../../pallets/structure" }489pallet-fungible = { default-features = false, path = "../../pallets/fungible" }490pallet-refungible = { default-features = false, path = "../../pallets/refungible" }491pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }492pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }493pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }494pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }495# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }496pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.29", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }497pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }498pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }499pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }500pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }501pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }502pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }503pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }504fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }505fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }506evm-coder = { default-features = false, path = '../../crates/evm-coder' }507up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }508pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }509510################################################################################511# Other Dependencies512513impl-trait-for-tuples = "0.2.2"514515################################################################################516# Dev Dependencies517518[dev-dependencies.logtest]519version = "2.0.0"520521################################################################################522# Build Dependencies523524[build-dependencies.substrate-wasm-builder]525git = "https://github.com/paritytech/substrate"526branch = "polkadot-v0.9.29"
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -50,7 +50,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 927030,
+	spec_version: 929030,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 2,
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'quartz-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.27'
+version = '0.9.29'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- a/runtime/quartz/src/lib.rs
+++ b/runtime/quartz/src/lib.rs
@@ -50,7 +50,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 927030,
+	spec_version: 929030,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 2,
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'unique-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.27'
+version = '0.9.29'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -50,7 +50,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 927030,
+	spec_version: 929030,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 2,
modifiedtests/scripts/readyness.jsdiffbeforeafterboth
--- a/tests/scripts/readyness.js
+++ b/tests/scripts/readyness.js
@@ -25,6 +25,7 @@
     }
     catch(e) {
       await sleep(10000);
+      console.log(e);
     }
   }
 }