Skip to content

Commit eb148b0

Browse files
committed
resolve
1 parent 8ad2ace commit eb148b0

File tree

3 files changed

+5
-242
lines changed

3 files changed

+5
-242
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
4646
* (crypto/keyring) [#21653](https://github.com/cosmos/cosmos-sdk/pull/21653) New Linux-only backend that adds Linux kernel's `keyctl` support.
4747
* (client/keys) [#21829](https://github.com/cosmos/cosmos-sdk/pull/21829) Add support for importing hex key using standard input.
4848
* (client) [#22807](https://github.com/cosmos/cosmos-sdk/pull/22807) Return v2 server information in the `version` command.
49+
* (baseapp) [#22893](https://github.com/cosmos/cosmos-sdk/pull/22893) Support mount object store in baseapp, add `ObjectStore` api in context.
4950

5051
### Improvements
5152

store/cachekv/internal/mergeiterator.go

-238
This file was deleted.

store/cachekv/internal/memiterator_test.go renamed to store/internal/btree/memiterator_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package internal
1+
package btree
22

33
import (
44
"testing"
55
)
66

77
func TestMemIterator_Ascending(t *testing.T) {
8-
db := NewBTree()
8+
db := NewBTree[[]byte]()
99
// db.set()
1010
db.Set([]byte("a"), []byte("value_a"))
1111
db.Set([]byte("b"), []byte("value_b"))
@@ -32,7 +32,7 @@ func TestMemIterator_Ascending(t *testing.T) {
3232
}
3333

3434
func TestMemIterator_Descending(t *testing.T) {
35-
db := NewBTree()
35+
db := NewBTree[[]byte]()
3636

3737
db.Set([]byte("a"), []byte("value_a"))
3838
db.Set([]byte("b"), []byte("value_b"))
@@ -60,7 +60,7 @@ func TestMemIterator_Descending(t *testing.T) {
6060
}
6161

6262
func TestMemIterator_EmptyRange(t *testing.T) {
63-
db := NewBTree()
63+
db := NewBTree[[]byte]()
6464
db.Set([]byte("a"), []byte("value_a"))
6565
db.Set([]byte("b"), []byte("value_b"))
6666
db.Set([]byte("c"), []byte("value_c"))

0 commit comments

Comments
 (0)