We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccfdafe commit 91b3380Copy full SHA for 91b3380
bench_test.go
@@ -11,6 +11,9 @@ import (
11
12
func BenchmarkBlockSTM(b *testing.B) {
13
stores := []storetypes.StoreKey{StoreKeyAuth, StoreKeyBank}
14
+ for i := int64(0); i < 26; i++ {
15
+ stores = append(stores, storetypes.NewKVStoreKey(strconv.FormatInt(i, 10)))
16
+ }
17
storage := NewMultiMemDB(stores)
18
testCases := []struct {
19
name string
0 commit comments