Skip to content

Commit e66716f

Browse files
committed
resolve
1 parent 4d38f8f commit e66716f

File tree

3 files changed

+6
-242
lines changed

3 files changed

+6
-242
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ 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+
ect store in baseapp,
50+
* (baseapp) [#22893](https://github.com/cosmos/cosmos-sdk/pull/22893) Support mount object store in baseapp, add `ObjectStore` api in context.
4951

5052
### Improvements
5153

store/cachekv/internal/mergeiterator.go

Lines changed: 0 additions & 238 deletions
This file was deleted.

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

Lines changed: 4 additions & 4 deletions
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)