Skip to content

Commit

Permalink
refactor: consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
inon-man committed Jul 21, 2023
1 parent 71724e8 commit f4667f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ Types of changes (Stanzas):
Ref: https://keepachangelog.com/en/1.0.0/
-->
# Changelog

## [Unreleased]

### Features
* (wasm) [#309](https://github.com/classic-terra/core/pull/309) Support WASM stargate queries
### State Machine Breaking

### Improvements
* (wasm) [#300](https://github.com/classic-terra/core/pull/300) Add test scripts for token migration
* (treasury) [#272](https://github.com/classic-terra/core/pull/272) Split the burn tax to the distribution module

## [v2.1.2](https://github.com/classic-terra/core/releases/tag/v2.1.2)

Expand Down
2 changes: 1 addition & 1 deletion app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ func NewAppKeepers(
// the second slice will add custom querier and message handler decorator
// this order must be uphold else error will be thrown
wasmOpts = append(wasmOpts, terrawasm.RegisterCustomPlugins(&appKeepers.MarketKeeper, &appKeepers.OracleKeeper, &appKeepers.TreasuryKeeper)...)
wasmOpts = append(terrawasm.RegisterStargateQueries(*bApp.GRPCQueryRouter(), appCodec), wasmOpts...)
wasmOpts = append(wasmOpts, terrawasm.RegisterStargateQueries(*bApp.GRPCQueryRouter(), appCodec)...)

appKeepers.WasmKeeper = wasmkeeper.NewKeeper(
appCodec,
Expand Down

0 comments on commit f4667f7

Please sign in to comment.