From e231652b31e3cee4fbb69a75a7aaf6007769b276 Mon Sep 17 00:00:00 2001 From: ThanhNhann Date: Tue, 30 May 2023 11:19:57 +0700 Subject: [PATCH 1/2] fix wrong restHandler --- x/gamm/client/proposal_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/gamm/client/proposal_handler.go b/x/gamm/client/proposal_handler.go index c54c3a54c58..5f0ec209921 100644 --- a/x/gamm/client/proposal_handler.go +++ b/x/gamm/client/proposal_handler.go @@ -8,6 +8,6 @@ import ( ) var ( - ReplaceMigrationRecordsProposalHandler = govclient.NewProposalHandler(cli.NewCmdSubmitReplaceMigrationRecordsProposal, rest.ProposalUpdateMigrationRecordsRESTHandler) + ReplaceMigrationRecordsProposalHandler = govclient.NewProposalHandler(cli.NewCmdSubmitReplaceMigrationRecordsProposal, rest.ProposalReplaceMigrationRecordsRESTHandler) UpdateMigrationRecordsProposalHandler = govclient.NewProposalHandler(cli.NewCmdSubmitUpdateMigrationRecordsProposal, rest.ProposalUpdateMigrationRecordsRESTHandler) ) From ce23daac90a7ce169d9bb0a0c18545e070ce634b Mon Sep 17 00:00:00 2001 From: ThanhNhann Date: Tue, 30 May 2023 11:34:12 +0700 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d42a4dd08a5..a100ec61c17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * [#4827] (https://github.com/osmosis-labs/osmosis/pull/4827) Protorev: Change highest liquidity pool updating from weekly to daily and change dev fee payout from weekly to after every trade. ### Misc Improvements - + + * [#5356](https://github.com/osmosis-labs/osmosis/pull/5356) Fix wrong restHandler for ReplaceMigrationRecordsProposal * [#5020](https://github.com/osmosis-labs/osmosis/pull/5020) Add gas config to the client.toml * [#5105](https://github.com/osmosis-labs/osmosis/pull/5105) Lint stableswap in the same manner as all of Osmosis * [#5065](https://github.com/osmosis-labs/osmosis/pull/5065) Use cosmossdk.io/errors