(t *testing.T, db lib.RWStoreI, k []byte)
| 158 | } |
| 159 | |
| 160 | func testDBGet(t *testing.T, db lib.RWStoreI, k []byte) (value []byte) { |
| 161 | value, err := db.Get(lib.JoinLenPrefix(k)) |
| 162 | require.NoError(t, err) |
| 163 | return |
| 164 | } |
| 165 | |
| 166 | func testCompareIterators(t *testing.T, db lib.RWStoreI, compare lib.RWStoreI, keys []string) { |
| 167 | var ( |
no test coverage detected