Skip to content

Commit

Permalink
Upgrade cosmos-sdk to v0.45.7 (cosmos#1905)
Browse files Browse the repository at this point in the history
* Upgrade cosmos-sdk to v0.45.7

* Add changelog entry
  • Loading branch information
devashishdxt authored and ulbqb committed Jul 27, 2023
1 parent 9d693ca commit 1f01721
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

* [\#1615](https://github.com/cosmos/ibc-go/pull/1615) Bump SDK version to v0.45.6
* [\#1627](https://github.com/cosmos/ibc-go/pull/1627) Bump Go version to 1.18
* [\#1905](https://github.com/cosmos/ibc-go/pull/1905) Bump SDK version to v0.45.7

### API Breaking

Expand Down
3 changes: 1 addition & 2 deletions modules/core/03-connection/types/msgs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ func (suite *MsgTestSuite) SetupTest() {

app := simapp.Setup(false)
db := dbm.NewMemDB()
dblog := log.NewNopLogger()
store := rootmulti.NewStore(db, dblog)
store := rootmulti.NewStore(db, log.NewNopLogger())
storeKey := storetypes.NewKVStoreKey("iavlStoreKey")

store.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, nil)
Expand Down
3 changes: 1 addition & 2 deletions modules/core/04-channel/types/msgs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ type TypesTestSuite struct {
func (suite *TypesTestSuite) SetupTest() {
app := simapp.Setup(false)
db := dbm.NewMemDB()
dblog := log.NewNopLogger()
store := rootmulti.NewStore(db, dblog)
store := rootmulti.NewStore(db, log.NewNopLogger())
storeKey := storetypes.NewKVStoreKey("iavlStoreKey")

store.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, nil)
Expand Down
3 changes: 1 addition & 2 deletions modules/core/23-commitment/types/commitment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ type MerkleTestSuite struct {

func (suite *MerkleTestSuite) SetupTest() {
db := dbm.NewMemDB()
dblog := log.NewNopLogger()
suite.store = rootmulti.NewStore(db, dblog)
suite.store = rootmulti.NewStore(db, log.NewNopLogger())

suite.storeKey = storetypes.NewKVStoreKey("iavlStoreKey")

Expand Down

0 comments on commit 1f01721

Please sign in to comment.