Skip to content

Commit

Permalink
Delete the app interface (#1665)
Browse files Browse the repository at this point in the history
* Delete the app interface

* Changelog update

* Use write type interface
  • Loading branch information
ValarDragon authored Jun 5, 2022
1 parent 8dd4750 commit d77a311
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 42 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Breaking Changes

#### golang API breaks

* [#1665](https://github.com/osmosis-labs/osmosis/pull/1665) Delete app/App interface
* [#1630](https://github.com/osmosis-labs/osmosis/pull/1630) Delete the v043_temp module, now that we're on an updated SDK version.


### Features

* [#1312] Stableswap: Createpool logic
* [#1230] Stableswap CFMM equations
* [#1429] solver for multi-asset CFMM
* [#1630](https://github.com/osmosis-labs/osmosis/pull/1630) Delete the v043_temp module, now that we're on an updated SDK version.

## [v9.0.0 - Nitrogen](https://github.com/osmosis-labs/osmosis/releases/tag/v9.0.0)

Expand Down
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import (
"github.com/cosmos/cosmos-sdk/server/api"
"github.com/cosmos/cosmos-sdk/server/config"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
sdksimapp "github.com/cosmos/cosmos-sdk/simapp"
"github.com/cosmos/cosmos-sdk/testutil/testdata"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
Expand Down Expand Up @@ -83,7 +84,7 @@ var (
// EmptyWasmOpts defines a type alias for a list of wasm options.
EmptyWasmOpts []wasm.Option

_ App = (*OsmosisApp)(nil)
_ sdksimapp.App = (*OsmosisApp)(nil)

Upgrades = []upgrades.Upgrade{v4.Upgrade, v5.Upgrade, v7.Upgrade, v9.Upgrade}
Forks = []upgrades.Fork{v3.Fork, v6.Fork, v8.Fork}
Expand Down
40 changes: 0 additions & 40 deletions app/types.go

This file was deleted.

0 comments on commit d77a311

Please sign in to comment.