Skip to content

Commit

Permalink
Merge branch 'main' into spoorthi/sdk-bump-to-v50
Browse files Browse the repository at this point in the history
Signed-off-by: Spoorthi <[email protected]>
  • Loading branch information
spoo-bar authored Jun 6, 2024
2 parents 2f3e5f7 + 5f2bde7 commit 13a87a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/proto-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:
branches: [main]
tags: [v*]
paths:
- "proto/**"
- proto/**

jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1
- uses: bufbuild/buf-setup-action@v1.31.0
- uses: bufbuild/buf-push-action@v1
with:
input: proto
Expand Down
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,12 @@ Contains all the PRs that improved the code without changing the behaviors.
### Changed
- [#573](https://github.com/archway-network/archway/pull/573) - Bump cosmos-sdk to v0.50.6

### Deprecated

### Removed

### Fixed
- [#569](https://github.com/archway-network/archway/pull/569) - Audit remidiations for x/cwerrors and x/cwica
- [#566](https://github.com/archway-network/archway/pull/566) - Fixing the localnet script to correctly set gov params post sdk v47

### Improvements

- [#567](https://github.com/archway-network/archway/pull/567) - Remove redundant params fetching in SaveCallback

## [v7.0.1](https://github.com/archway-network/archway/releases/tag/v7.0.0)
Expand Down
6 changes: 3 additions & 3 deletions scripts/localnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ setup_chain () {
genesis="$CHAIN_DIR/$CHAIN_ID/config/genesis.json"
# x/gov params change
# reduce voting period to 2 minutes
contents="$(jq '.app_state.gov.voting_params.voting_period = "120s"' $genesis)" && echo "${contents}" > $genesis
contents="$(jq '.app_state.gov.params.voting_period = "120s"' $genesis)" && echo "${contents}" > $genesis
echo_info "Set x/gov voting period to 120 seconds"
# reduce minimum deposit amount to 10stake
contents="$(jq '.app_state.gov.deposit_params.min_deposit[0].amount = "10"' $genesis)" && echo "${contents}" > $genesis
contents="$(jq '.app_state.gov.params.min_deposit[0].amount = "10"' $genesis)" && echo "${contents}" > $genesis
echo_info "Set x/gov proposal min deposit amount to 10 stake"
# reduce deposit period to 20seconds
contents="$(jq '.app_state.gov.deposit_params.max_deposit_period = "20s"' $genesis)" && echo "${contents}" > $genesis
contents="$(jq '.app_state.gov.params.max_deposit_period = "20s"' $genesis)" && echo "${contents}" > $genesis
echo_info "Set x/gov proposal max deposit period to 20 seconds"


Expand Down

0 comments on commit 13a87a9

Please sign in to comment.