Skip to content

Commit

Permalink
Merge branch 'mock-mainnet-begin-block-deployment' into mock-mainnet-…
Browse files Browse the repository at this point in the history
…begin-block-deployment-fix-btc-duplicate-payment
  • Loading branch information
ws4charlie authored Oct 11, 2023
2 parents 308d63c + 268ea42 commit 3714c4d
Show file tree
Hide file tree
Showing 186 changed files with 5,989 additions and 1,450 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
* @brewmaster012 @kingpinXD @kevinssgh @fadeev @lumtis @ws4charlie

.github/** @zeta-chain/devops
4 changes: 2 additions & 2 deletions .github/actions/upgrade-testing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ runs:
BINARY_NAME_SUFFIX: "ubuntu-22-amd64"
UPGRADES_SLEEP_TIME: 300
DEBUG_UPGRADES: "false"
#BINARY_DOWNLOAD_LIST: '{"binary_download_list":[["v8.3.3", "zetacored-ubuntu-22-amd64"],["v9.0.0", "zetacored-ubuntu-22-amd64"]]}'
#BINARY_DOWNLOAD_LIST: '{"binary_download_list":[["v8.3.3", "zetacored-testnet-linux-amd64"],["v9.0.0", "zetacored-ubuntu-22-amd64"]]}'
#TAG_LIST: '{"tag_list":["v8.3.3","v9.0.0"]}'
STARTING_VERSION: "v8.3.3"
#END_VERSION: "v9.0.0"
Expand All @@ -60,7 +60,7 @@ runs:
echo "***********Change Permission of Zetacored*********************"
chmod a+x zetacored*
chmod -R 777 zetacored*
mv zetacored-ubuntu-22-amd64 zetacored
mv zetacored-testnet-linux-amd64 zetacored
export PATH=$(pwd):$PATH
echo "***********Change Directories into the Upgrade Testing Directory.*********************"
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/upgrade-testing/scripts/raise_gov_proposal.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade",
"authority": os.environ["GOV_ADDRESS"],
"plan": {
"name": os.environ['VERSION'],
"name": os.environ['UPGRADE_NAME'],
"time": "0001-01-01T00:00:00Z",
"height": str(UPGRADE_HEIGHT).split('.')[0],
"info": os.environ["UPGRADE_INFO"],
Expand Down Expand Up @@ -44,13 +44,13 @@
# -y
# """

GOV_PROPOSAL = f"""zetacored tx gov submit-legacy-proposal software-upgrade "{os.environ['VERSION']}" \
GOV_PROPOSAL = f"""zetacored tx gov submit-legacy-proposal software-upgrade "{os.environ['UPGRADE_NAME']}" \
--from "{os.environ['MONIKER']}" \
--deposit {os.environ["DEPOSIT"]} \
--upgrade-height "{str(UPGRADE_HEIGHT).split('.')[0]}" \
--upgrade-info '{os.environ["UPGRADE_INFO"]}' \
--title "{os.environ['VERSION']}" \
--description "Zeta Release {os.environ['VERSION']}" \
--description "Zeta Release {os.environ['UPGRADE_NAME']}" \
--chain-id "{os.environ['CHAINID']}" \
--node "{os.environ['NODE']}" \
--keyring-backend test \
Expand Down
Loading

0 comments on commit 3714c4d

Please sign in to comment.