File tree Expand file tree Collapse file tree 3 files changed +5
-242
lines changed Expand file tree Collapse file tree 3 files changed +5
-242
lines changed Original file line number Diff line number Diff 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- package internal
1+ package btree
22
33import (
44 "testing"
55)
66
77func 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
3434func 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
6262func 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" ))
You can’t perform that action at this time.
0 commit comments