(t *testing.T, db lib.WStoreI, k []byte)
| 154 | } |
| 155 | |
| 156 | func testDBDelete(t *testing.T, db lib.WStoreI, k []byte) { |
| 157 | require.NoError(t, db.Delete(lib.JoinLenPrefix(k))) |
| 158 | } |
| 159 | |
| 160 | func testDBGet(t *testing.T, db lib.RWStoreI, k []byte) (value []byte) { |
| 161 | value, err := db.Get(lib.JoinLenPrefix(k)) |
no test coverage detected