Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-develope committed Jul 25, 2024
1 parent 34cdb89 commit cac23cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

- [#965](https://github.com/cosmos/iavl/pull/965) Use expected interface for expected IAVL `Logger`.
- [#967](https://github.com/cosmos/iavl/pull/967) Close the pruning process when the nodeDB is closed.

## v1.2.0 May 13, 2024

Expand Down
4 changes: 2 additions & 2 deletions nodedb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,6 @@ func TestCloseNodeDB(t *testing.T) {
defer db.Close()
opts := DefaultOptions()
opts.AsyncPruning = true
ndb := newNodeDB(db, 0, opts, log.NewNopLogger())
ndb.Close()
ndb := newNodeDB(db, 0, opts, NewNopLogger())
require.NoError(t, ndb.Close())
}

0 comments on commit cac23cf

Please sign in to comment.