git.delta.rocks / unique-network / refs/commits / c72090e3f649

difftreelog

ci use state-version: 0 on forkless-with-data workflow

Yaroslav Bolyukin2023-06-05parent: #98307af.patch.diff
in: master

9 files changed

modified.docker/Dockerfile-parachain-upgrade-data.j2diffbeforeafterboth
--- a/.docker/Dockerfile-parachain-upgrade-data.j2
+++ b/.docker/Dockerfile-parachain-upgrade-data.j2
@@ -35,7 +35,7 @@
 COPY . /unique_parachain
 WORKDIR /unique_parachain
 
-RUN cargo build --features={{ NETWORK }}-runtime --$PROFILE
+RUN cargo build --features={{ NETWORK }}-runtime{{ EXTRA_FEATURES }} --$PROFILE
 
 # ===== RUN ======
 FROM ubuntu:22.04
modified.github/workflows/forkless-update-data.ymldiffbeforeafterboth
before · .github/workflows/forkless-update-data.yml
1# Forkless update with data replication2# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869792/Forkless+update+with+data34# Triger: only call from main workflow(re-usable workflows)5on:6  workflow_call:789# A workflow run is made up of one or more jobs that can run sequentially or in parallel10jobs:1112  prepare-execution-marix:1314    name: Prepare execution matrix1516    runs-on: self-hosted-ci17    outputs:18      matrix: ${{ steps.create_matrix.outputs.matrix }}1920    steps:2122      - name: Clean Workspace23        uses: AutoModality/action-clean@v1.1.02425      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it26      - uses: actions/checkout@v3.1.027        with:28          ref: ${{ github.head_ref }}  #Checking out head commit2930      - name: Read .env file31        uses: xom9ikk/dotenv@v23233      - name: Create Execution matrix34        uses: CertainLach/create-matrix-action@v435        id: create_matrix36        with:37          matrix: |38            network {quartz}, wasm_name {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}39            network {unique}, wasm_name {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}40            network {opal}, wasm_name {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}41            network {sapphire}, wasm_name {quartz}, mainnet_branch {${{ env.SAPPHIRE_MAINNET_BRANCH }}}, replica_from_address {${{ env.SAPPHIRE_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEEAST_MAINNET_BRANCH }}}4243  forkless-data-build:44    needs: prepare-execution-marix45    # The type of runner that the job will run on46    runs-on: [self-hosted-ci,large]47    timeout-minutes: 13804849    name: ${{ matrix.network }}-data-build50    strategy:51      matrix:52        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}5354    continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.5556    steps:57      - name: Clean Workspace58        uses: AutoModality/action-clean@v1.1.05960      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it61      - uses: actions/checkout@v3.1.062        with:63          ref: ${{ github.head_ref }}  #Checking out head commit6465      - name: Read .env file66        uses: xom9ikk/dotenv@v26768      # Prepare SHA  69      - name: Prepare SHA70        uses: ./.github/actions/prepare7172      # Build main image for FORKLESS-UPDATE-NODATA73      - name: Generate ENV related extend Dockerfile file74        uses: cuchi/jinja2-action@v1.2.075        with:76          template: .docker/Dockerfile-parachain-upgrade-data.j277          output_file: .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml78          variables: |79            RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}80            NETWORK=${{ matrix.network }}81            MAINNET_BRANCH=${{ matrix.mainnet_branch }}82            WASM_NAME=${{ matrix.wasm_name }}83            POLKADOT_BUILD_BRANCH=${{ matrix.relay_branch }}84            POLKADOT_LAUNCH_BRANCH=${{ env.POLKADOT_LAUNCH_BRANCH }}85            REPLICA_FROM=${{ matrix.replica_from_address }}86            CHAINQL=${{ env.CHAINQL }}8788      - name: Show build configuration89        run: cat .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml9091      - name: Generate launch-config-forkless-data.json92        uses: cuchi/jinja2-action@v1.2.093        with:94          template: .docker/forkless-config/launch-config-forkless-data.j295          output_file: .docker/forkless-config/launch-config-forkless-data.json96          variables: |97            WASM_NAME=${{ matrix.wasm_name }}98            RELAY_CHAIN_TYPE=${{ env.RELAY_CHAIN_TYPE }}99            REPLICA_FROM=${{ matrix.replica_from_address }}            100101      - name: Show launch-config-forkless configuration102        run: cat .docker/forkless-config/launch-config-forkless-data.json103104      - name: Run find-and-replace to remove slashes from branch name105        uses: mad9000/actions-find-and-replace-string@4106        id: branchname107        with:108          source: ${{ github.head_ref }}109          find: '/'110          replace: '-'111112      - name: Set build SHA113        shell: bash114        run: |115          echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV116117      - name: Build the stack118        run: cd .docker/ && docker build --no-cache --file ./Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml --tag uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA ../119120      - name: Log in to Docker Hub121        uses: docker/login-action@v2.1.0122        with:123          username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}124          password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}125126      - name: Push docker image version127        run: docker push uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA128129      - name: Remove builder cache130        if: always()                   # run this step always131        run: |132          docker builder prune -f133          docker system prune -f134135  forkless-data-tests:136    needs: [prepare-execution-marix, forkless-data-build]137    # The type of runner that the job will run on138    runs-on: [self-hosted-ci, large]139140    timeout-minutes: 600141142    name: ${{ matrix.network }}-data-tests143144    continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.145146    strategy:147      matrix:148        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}149150    steps:151      - name: Skip if pull request is in Draft152        if: github.event.pull_request.draft == true153        run: exit 1154155      - name: Clean Workspace156        uses: AutoModality/action-clean@v1.1.0157158      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it159      - uses: actions/checkout@v3.1.0160        with:161          ref: ${{ github.head_ref }}  #Checking out head commit162163      - name: Prepare164        uses: ./.github/actions/prepare165166      - name: Set build SHA167        shell: bash168        run: |169          echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV170171      - name: Run find-and-replace to remove slashes from branch name172        uses: mad9000/actions-find-and-replace-string@4173        id: branchname174        with:175          source: ${{ github.head_ref }}176          find: '/'177          replace: '-'178179      - name: Read .env file180        uses: xom9ikk/dotenv@v2181182      - name: Generate ENV related extend file for docker-compose183        uses: cuchi/jinja2-action@v1.2.0184        with:185          template: .docker/docker-compose.forkless-data.j2186          output_file: .docker/docker-compose.forkless-data.${{ matrix.network }}.yml187          variables: |188            NETWORK=${{ matrix.network }}189            BUILD_TAG=${{ steps.branchname.outputs.value }}-$BUILD_SHA190191      - name: Show build configuration192        run: cat .docker/docker-compose.forkless-data.${{ matrix.network }}.yml193194      - name: Log in to Docker Hub195        uses: docker/login-action@v2.1.0196        with:197          username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}198          password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}199200      - name: Build the stack201        run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" up -d --remove-orphans --force-recreate --timeout 300202203      - uses: actions/setup-node@v3.5.1204        with:205          node-version: 16206207      - name: Check if docker logs consist logs related to Runtime Upgrade testing.208        if: success()209        run: |210          counter=160211          function check_container_status {212                docker inspect -f {{.State.Running}} forkless-data213          }214          function do_docker_logs {215                docker logs --details forkless-data  2>&1216          }217          function is_started {218                if [ "$(check_container_status)" == "true" ]; then219                        echo "Container: forkless-data RUNNING";220                        echo "Check Docker logs"221                        DOCKER_LOGS=$(do_docker_logs)222                        if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then223                                echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"224                                return 0225                        elif [[ ${DOCKER_LOGS} = *"🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"* ]];then226                                echo "🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"227                                return 1228                        else229                                echo "Message not found in logs output, repeating..."230                                return 1231                        fi232                else233                        echo "Container forkless-data not RUNNING"234                        echo "Halting all future checks"235                        exit 1236                fi237          exit 0238          }239          while ! is_started; do240                echo "Waiting for special message in log files "241                sleep 30s242                counter=$(( $counter - 1 ))243                echo "Counter: $counter"244                if [ "$counter" -gt "0" ]; then245                         continue246                else247                         echo "Counter reached zero, yet upgrade is not finished"248                         exit 1249                fi250          done251          echo "Halting script"252          exit 0253        shell: bash254255      - name: Collect Docker Logs256        if: success() || failure()257        uses: jwalton/gh-docker-logs@v2.2.1258        with:259          dest: './forkless-parachain-upgrade-data-logs.${{ matrix.features }}'260261      - name: Show Docker logs262        if: success() || failure()263        run: cat './forkless-parachain-upgrade-data-logs.${{ matrix.features }}/forkless-data.log'264265      - name: Stop running containers266        if: always()                   # run this step always267        run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" down --volumes268269      - name: Remove builder cache270        if: always()                   # run this step always271        run: |272          docker builder prune -f -a273          docker system prune -f274          docker image prune -f -a
after · .github/workflows/forkless-update-data.yml
1# Forkless update with data replication2# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869792/Forkless+update+with+data34# Triger: only call from main workflow(re-usable workflows)5on:6  workflow_call:789# A workflow run is made up of one or more jobs that can run sequentially or in parallel10jobs:1112  prepare-execution-marix:1314    name: Prepare execution matrix1516    runs-on: self-hosted-ci17    outputs:18      matrix: ${{ steps.create_matrix.outputs.matrix }}1920    steps:2122      - name: Clean Workspace23        uses: AutoModality/action-clean@v1.1.02425      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it26      - uses: actions/checkout@v3.1.027        with:28          ref: ${{ github.head_ref }}  #Checking out head commit2930      - name: Read .env file31        uses: xom9ikk/dotenv@v23233      - name: Create Execution matrix34        uses: CertainLach/create-matrix-action@v435        id: create_matrix36        with:37          # TODO: Remove state-version-0 after mainnet upgrade38          matrix: |39            network {quartz}, wasm_name {quartz}, mainnet_branch {${{ env.QUARTZ_MAINNET_BRANCH }}}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}, extra_features {,state-version-0}40            network {unique}, wasm_name {unique}, mainnet_branch {${{ env.UNIQUE_MAINNET_BRANCH }}}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}, extra_features {,state-version-0}41            network {opal}, wasm_name {opal}, mainnet_branch {${{ env.OPAL_MAINNET_BRANCH }}}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}, extra_features {,state-version-0}42            network {sapphire}, wasm_name {quartz}, mainnet_branch {${{ env.SAPPHIRE_MAINNET_BRANCH }}}, replica_from_address {${{ env.SAPPHIRE_REPLICA_FROM }}}, relay_branch {${{ env.UNIQUEEAST_MAINNET_BRANCH }}} extra_features {,state-version-0}4344  forkless-data-build:45    needs: prepare-execution-marix46    # The type of runner that the job will run on47    runs-on: [self-hosted-ci,large]48    timeout-minutes: 13804950    name: ${{ matrix.network }}-data-build51    strategy:52      matrix:53        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}5455    continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.5657    steps:58      - name: Clean Workspace59        uses: AutoModality/action-clean@v1.1.06061      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it62      - uses: actions/checkout@v3.1.063        with:64          ref: ${{ github.head_ref }}  #Checking out head commit6566      - name: Read .env file67        uses: xom9ikk/dotenv@v26869      # Prepare SHA  70      - name: Prepare SHA71        uses: ./.github/actions/prepare7273      # Build main image for FORKLESS-UPDATE-NODATA74      - name: Generate ENV related extend Dockerfile file75        uses: cuchi/jinja2-action@v1.2.076        with:77          template: .docker/Dockerfile-parachain-upgrade-data.j278          output_file: .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml79          variables: |80            RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}81            NETWORK=${{ matrix.network }}82            MAINNET_BRANCH=${{ matrix.mainnet_branch }}83            WASM_NAME=${{ matrix.wasm_name }}84            POLKADOT_BUILD_BRANCH=${{ matrix.relay_branch }}85            POLKADOT_LAUNCH_BRANCH=${{ env.POLKADOT_LAUNCH_BRANCH }}86            REPLICA_FROM=${{ matrix.replica_from_address }}87            CHAINQL=${{ env.CHAINQL }}88            EXTRA_FEATURES=${{ env.extra_features }}8990      - name: Show build configuration91        run: cat .docker/Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml9293      - name: Generate launch-config-forkless-data.json94        uses: cuchi/jinja2-action@v1.2.095        with:96          template: .docker/forkless-config/launch-config-forkless-data.j297          output_file: .docker/forkless-config/launch-config-forkless-data.json98          variables: |99            WASM_NAME=${{ matrix.wasm_name }}100            RELAY_CHAIN_TYPE=${{ env.RELAY_CHAIN_TYPE }}101            REPLICA_FROM=${{ matrix.replica_from_address }}            102103      - name: Show launch-config-forkless configuration104        run: cat .docker/forkless-config/launch-config-forkless-data.json105106      - name: Run find-and-replace to remove slashes from branch name107        uses: mad9000/actions-find-and-replace-string@4108        id: branchname109        with:110          source: ${{ github.head_ref }}111          find: '/'112          replace: '-'113114      - name: Set build SHA115        shell: bash116        run: |117          echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV118119      - name: Build the stack120        run: cd .docker/ && docker build --no-cache --file ./Dockerfile-parachain-upgrade-data.${{ matrix.network }}.yml --tag uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA ../121122      - name: Log in to Docker Hub123        uses: docker/login-action@v2.1.0124        with:125          username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}126          password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}127128      - name: Push docker image version129        run: docker push uniquenetwork/ci-forkless-data-local:${{ matrix.network }}-${{ steps.branchname.outputs.value }}-$BUILD_SHA130131      - name: Remove builder cache132        if: always()                   # run this step always133        run: |134          docker builder prune -f135          docker system prune -f136137  forkless-data-tests:138    needs: [prepare-execution-marix, forkless-data-build]139    # The type of runner that the job will run on140    runs-on: [self-hosted-ci, large]141142    timeout-minutes: 600143144    name: ${{ matrix.network }}-data-tests145146    continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.147148    strategy:149      matrix:150        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}151152    steps:153      - name: Skip if pull request is in Draft154        if: github.event.pull_request.draft == true155        run: exit 1156157      - name: Clean Workspace158        uses: AutoModality/action-clean@v1.1.0159160      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it161      - uses: actions/checkout@v3.1.0162        with:163          ref: ${{ github.head_ref }}  #Checking out head commit164165      - name: Prepare166        uses: ./.github/actions/prepare167168      - name: Set build SHA169        shell: bash170        run: |171          echo "BUILD_SHA=${LAST_COMMIT_SHA:0:8}" >> $GITHUB_ENV172173      - name: Run find-and-replace to remove slashes from branch name174        uses: mad9000/actions-find-and-replace-string@4175        id: branchname176        with:177          source: ${{ github.head_ref }}178          find: '/'179          replace: '-'180181      - name: Read .env file182        uses: xom9ikk/dotenv@v2183184      - name: Generate ENV related extend file for docker-compose185        uses: cuchi/jinja2-action@v1.2.0186        with:187          template: .docker/docker-compose.forkless-data.j2188          output_file: .docker/docker-compose.forkless-data.${{ matrix.network }}.yml189          variables: |190            NETWORK=${{ matrix.network }}191            BUILD_TAG=${{ steps.branchname.outputs.value }}-$BUILD_SHA192193      - name: Show build configuration194        run: cat .docker/docker-compose.forkless-data.${{ matrix.network }}.yml195196      - name: Log in to Docker Hub197        uses: docker/login-action@v2.1.0198        with:199          username: ${{ secrets.CORE_DOCKERHUB_USERNAME }}200          password: ${{ secrets.CORE_DOCKERHUB_TOKEN }}201202      - name: Build the stack203        run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" up -d --remove-orphans --force-recreate --timeout 300204205      - uses: actions/setup-node@v3.5.1206        with:207          node-version: 16208209      - name: Check if docker logs consist logs related to Runtime Upgrade testing.210        if: success()211        run: |212          counter=160213          function check_container_status {214                docker inspect -f {{.State.Running}} forkless-data215          }216          function do_docker_logs {217                docker logs --details forkless-data  2>&1218          }219          function is_started {220                if [ "$(check_container_status)" == "true" ]; then221                        echo "Container: forkless-data RUNNING";222                        echo "Check Docker logs"223                        DOCKER_LOGS=$(do_docker_logs)224                        if [[ ${DOCKER_LOGS} = *"🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"* ]];then225                                echo "🛸 PARACHAINS' RUNTIME UPGRADE TESTING COMPLETE 🛸"226                                return 0227                        elif [[ ${DOCKER_LOGS} = *"🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"* ]];then228                                echo "🚧 PARACHAINS' RUNTIME UPGRADE TESTING FAILED 🚧"229                                return 1230                        else231                                echo "Message not found in logs output, repeating..."232                                return 1233                        fi234                else235                        echo "Container forkless-data not RUNNING"236                        echo "Halting all future checks"237                        exit 1238                fi239          exit 0240          }241          while ! is_started; do242                echo "Waiting for special message in log files "243                sleep 30s244                counter=$(( $counter - 1 ))245                echo "Counter: $counter"246                if [ "$counter" -gt "0" ]; then247                         continue248                else249                         echo "Counter reached zero, yet upgrade is not finished"250                         exit 1251                fi252          done253          echo "Halting script"254          exit 0255        shell: bash256257      - name: Collect Docker Logs258        if: success() || failure()259        uses: jwalton/gh-docker-logs@v2.2.1260        with:261          dest: './forkless-parachain-upgrade-data-logs.${{ matrix.features }}'262263      - name: Show Docker logs264        if: success() || failure()265        run: cat './forkless-parachain-upgrade-data-logs.${{ matrix.features }}/forkless-data.log'266267      - name: Stop running containers268        if: always()                   # run this step always269        run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" down --volumes270271      - name: Remove builder cache272        if: always()                   # run this step always273        run: |274          docker builder prune -f -a275          docker system prune -f276          docker image prune -f -a
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -105,3 +105,4 @@
 runtime-benchmarks = ['opal-runtime/runtime-benchmarks', 'polkadot-cli/runtime-benchmarks', 'polkadot-service/runtime-benchmarks', 'quartz-runtime?/runtime-benchmarks', 'sc-service/runtime-benchmarks', 'unique-runtime?/runtime-benchmarks']
 sapphire-runtime = ['quartz-runtime', 'quartz-runtime/become-sapphire']
 try-runtime = ['opal-runtime?/try-runtime', 'quartz-runtime?/try-runtime', 'try-runtime-cli/try-runtime', 'unique-runtime?/try-runtime']
+state-version-0 = ['opal-runtime?/state-version-0', 'quartz-runtime?/state-version-0', 'unique-runtime?/state-version-0']
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -17,6 +17,7 @@
 
 [features]
 default = ['opal-runtime', 'std']
+state-version-0 = []
 limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
 opal-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'pallet-test-utils', 'preimage', 'refungible']
 pov-estimate = []
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -56,6 +56,9 @@
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 3,
+	#[cfg(feature="state-version-0")]
+	state_version: 0,
+	#[cfg(not(feature="state-version-0"))]
 	state_version: 1,
 };
 
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -18,6 +18,7 @@
 [features]
 become-sapphire = []
 default = ['quartz-runtime', 'std']
+state-version-0 = []
 limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
 pov-estimate = []
 quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'preimage', 'refungible']
modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- a/runtime/quartz/src/lib.rs
+++ b/runtime/quartz/src/lib.rs
@@ -59,6 +59,9 @@
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 3,
+	#[cfg(feature="state-version-0")]
+	state_version: 0,
+	#[cfg(not(feature="state-version-0"))]
 	state_version: 1,
 };
 
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -17,6 +17,7 @@
 
 [features]
 default = ['std', 'unique-runtime']
+state-version-0 = []
 limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
 pov-estimate = []
 runtime-benchmarks = [
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -56,6 +56,9 @@
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 3,
+	#[cfg(feature="state-version-0")]
+	state_version: 0,
+	#[cfg(not(feature="state-version-0"))]
 	state_version: 1,
 };