From 250801dd77db912ad7cde6a9824fa70dfe7e38a4 Mon Sep 17 00:00:00 2001 From: Robert Pirtle Date: Thu, 27 Apr 2023 07:49:55 -0700 Subject: [PATCH] fix ci & sort denoms in internal testnet genesis coins (#1580) * fix internal genesis validation ci * sort coins in internal testnet genesis --- .github/workflows/ci-default.yml | 56 +++++++++++------------ ci/env/kava-internal-testnet/genesis.json | 8 ++-- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/ci-default.yml b/.github/workflows/ci-default.yml index ea554b7f..45f08b72 100644 --- a/.github/workflows/ci-default.yml +++ b/.github/workflows/ci-default.yml @@ -36,34 +36,34 @@ jobs: validate-internal-testnet-genesis: runs-on: ubuntu-latest steps: - - name: checkout repo from current commit - uses: actions/checkout@v3 - with: - submodules: true - - name: save version of kava that will be deployed if this pr is merged - id: kava-version - run: | - echo "KAVA_VERSION=$(cat ./ci/env/kava-internal-testnet/KAVA.VERSION)" >> $GITHUB_OUTPUT - - name: checkout repo from master - uses: actions/checkout@v3 - with: - ref: master - - name: checkout version of kava that will be deployed if this pr is merged - run: | - git pull -p - git checkout $KAVA_VERSION - env: - KAVA_VERSION: ${{ steps.kava-version.outputs.KAVA_VERSION }} - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: "1.19" - check-latest: true - cache: true - - name: build kava cli - run: make install - - name: validate testnet genesis - run: kava validate-genesis ci/env/kava-internal-testnet/genesis.json + - name: checkout repo from current commit + uses: actions/checkout@v3 + - name: save version of kava that will be deployed if this pr is merged + id: kava-version + run: | + echo "KAVA_VERSION=$(cat ./ci/env/kava-internal-testnet/KAVA.VERSION)" >> $GITHUB_OUTPUT + - name: checkout repo from master + uses: actions/checkout@v3 + with: + ref: master + - name: checkout version of kava that will be deployed if this pr is merged + run: | + git pull -p + git checkout $KAVA_VERSION + env: + KAVA_VERSION: ${{ steps.kava-version.outputs.KAVA_VERSION }} + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: "1.19" + check-latest: true + cache: true + - name: build kava cli + run: make install + - name: checkout repo from current commit to validate current branch's genesis + uses: actions/checkout@v3 + - name: validate testnet genesis + run: kava validate-genesis ci/env/kava-internal-testnet/genesis.json validate-protonet-genesis: runs-on: ubuntu-latest steps: diff --git a/ci/env/kava-internal-testnet/genesis.json b/ci/env/kava-internal-testnet/genesis.json index f064d31d..0cd9b664 100644 --- a/ci/env/kava-internal-testnet/genesis.json +++ b/ci/env/kava-internal-testnet/genesis.json @@ -299,10 +299,6 @@ "denom": "erc20/axelar/usdc", "amount": "10000000000" }, - { - "denom": "erc20/multichain/wbtc", - "amount": "1000000000" - }, { "denom": "erc20/multichain/usdc", "amount": "1000000000000000000" @@ -311,6 +307,10 @@ "denom": "erc20/multichain/usdt", "amount": "10000000000" }, + { + "denom": "erc20/multichain/wbtc", + "amount": "1000000000" + }, { "denom": "hard", "amount": "1000000000"