Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update gov type for Set-Scaling-Factor #7360

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug Fixes

* [#7360](https://github.com/osmosis-labs/osmosis/pull/7360) fix: use gov type for SetScalingFactorController

## v22.0.1

### Bug Fixes

* [#7346](https://github.com/osmosis-labs/osmosis/pull/7346) Prevent heavy gRPC load from app hashing nodes

## v22.0.0
Expand Down Expand Up @@ -96,15 +102,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## v21.2.2
### Features
* [#7238](https://github.com/osmosis-labs/osmosis/pull/7238) re-add clawback vesting command
* [#7253](https://github.com/osmosis-labs/osmosis/pull/7253) feat: extended app hash logs

* [#7253](https://github.com/osmosis-labs/osmosis/pull/7253) feat: extended app hash logs

### Bug Fixes
* [#7233](https://github.com/osmosis-labs/osmosis/pull/7233) fix: config overwrite ignores app.toml values
* [#7246](https://github.com/osmosis-labs/osmosis/pull/7246) fix: config overwrite fails with exit code 1 if wrong permissions

### Misc Improvements
* [#7254](https://github.com/osmosis-labs/osmosis/pull/7254) chore: remove cl test modules
* [#7254](https://github.com/osmosis-labs/osmosis/pull/7254) chore: remove cl test modules
* [#7269](https://github.com/osmosis-labs/osmosis/pull/7269) chore: go mod dependency updates
* [#7126](https://github.com/osmosis-labs/osmosis/pull/7126) refactor: using coins.Denoms() from sdk instead of osmoutils
* [#7127](https://github.com/osmosis-labs/osmosis/pull/7127) refactor: replace MinCoins with sdk coins.Min()
Expand All @@ -129,7 +134,6 @@ Epoch and CPU time optimizations
* [#7093](https://github.com/osmosis-labs/osmosis/pull/7093),[#7100](https://github.com/osmosis-labs/osmosis/pull/7100),[#7172](https://github.com/osmosis-labs/osmosis/pull/7172),[#7174](https://github.com/osmosis-labs/osmosis/pull/7174),[#7186](https://github.com/osmosis-labs/osmosis/pull/7186), [#7192](https://github.com/osmosis-labs/osmosis/pull/7192) Lower CPU overheads of the Osmosis epoch.
* [#7106](https://github.com/osmosis-labs/osmosis/pull/7106) Halve the time of log2 calculation (speeds up TWAP code)


## v21.1.2

* [#7170](https://github.com/osmosis-labs/osmosis/pull/7170) Update mempool-eip1559 params to cause less base fee spikes on mainnet.
Expand Down Expand Up @@ -186,7 +190,6 @@ Epoch optimizations are in this release, see a subset of PR links in v21.1.3 sec
* [#6805](https://github.com/osmosis-labs/osmosis/pull/6805) return bucket index of the current tick from LiquidityPerTickRange query
* [#6530](https://github.com/osmosis-labs/osmosis/pull/6530) Improve error message when CL LP fails due to slippage bound hit.


### Bug Fixes

* [#6840](https://github.com/osmosis-labs/osmosis/pull/6840) fix: change TypeMsgUnbondConvertAndStake value to "unbond_convert_and_stake" and improve error message when epoch currentEpochStartHeight less than zero
Expand Down Expand Up @@ -283,7 +286,6 @@ Epoch optimizations are in this release, see a subset of PR links in v21.1.3 sec
* [#6511](https://github.com/osmosis-labs/osmosis/pull/6511) remove redundant param from CreateGaugeRefKeys in incentives
* [#6510](https://github.com/osmosis-labs/osmosis/pull/6510) remove redundant ctx param from DeleteAllKeysFromPrefix in osmoutils


## v19.1.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion x/gamm/types/gov.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (p *SetScalingFactorControllerProposal) ProposalRoute() string { return Rou

// ProposalType returns the type of the proposal
func (p *SetScalingFactorControllerProposal) ProposalType() string {
return ProposalTypeReplaceMigrationRecords
return ProposalTypeSetScalingFactorController
}

// ValidateBasic validates a governance proposal's abstract and basic contents
Expand Down