From ee8ec56dd35b0617c9c15007476942d617e497b0 Mon Sep 17 00:00:00 2001 From: Alex Todorov Date: Thu, 21 Nov 2024 13:21:46 +0200 Subject: [PATCH] Use the correct chain name for live-sync-creditcoin CI job originally this CI config was a copy from Creditcoin 2 where the node binary accepts both --chain main and --chain mainnet. However Creditcoin3 recognizes only the value "mainnet"! --- .github/workflows/runtime-upgrade.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtime-upgrade.yml b/.github/workflows/runtime-upgrade.yml index 2ee85c23..d71d5600 100644 --- a/.github/workflows/runtime-upgrade.yml +++ b/.github/workflows/runtime-upgrade.yml @@ -53,7 +53,7 @@ jobs: if: github.base_ref == 'main' run: | # shellcheck disable=SC2129 - echo "target_chain=main" >> "$GITHUB_OUTPUT" + echo "target_chain=mainnet" >> "$GITHUB_OUTPUT" echo "boot_node=/dns4/cc3-bootnode.creditcoin.network/tcp/30333/p2p/12D3KooWLGyvbdQ3wTGjRAEueFsDnstZnV8fN3iyPTmHeyswSPGy" >> "$GITHUB_OUTPUT" echo "rpc_url=wss://rpc.cc3-mainnet.creditcoin.network:443/ws" >> "$GITHUB_OUTPUT" echo "https_rpc_url=https://rpc.cc3-mainnet.creditcoin.network/rpc" >> "$GITHUB_OUTPUT"