Index: filter/dscache/ds_txn.go |
diff --git a/filter/dscache/ds_txn.go b/filter/dscache/ds_txn.go |
index 6ecceb4f77a56d61092898bac43eb4f6e9e3f897..a1664f3b4d5ede1a09d105ac20b7feb3df52917c 100644 |
--- a/filter/dscache/ds_txn.go |
+++ b/filter/dscache/ds_txn.go |
@@ -18,12 +18,12 @@ type dsTxnCache struct { |
var _ ds.RawInterface = (*dsTxnCache)(nil) |
-func (d *dsTxnCache) DeleteMulti(keys []ds.Key, cb ds.DeleteMultiCB) error { |
+func (d *dsTxnCache) DeleteMulti(keys []*ds.Key, cb ds.DeleteMultiCB) error { |
d.state.add(d.sc, keys) |
return d.RawInterface.DeleteMulti(keys, cb) |
} |
-func (d *dsTxnCache) PutMulti(keys []ds.Key, metas []ds.PropertyMap, cb ds.PutMultiCB) error { |
+func (d *dsTxnCache) PutMulti(keys []*ds.Key, metas []ds.PropertyMap, cb ds.PutMultiCB) error { |
d.state.add(d.sc, keys) |
return d.RawInterface.PutMulti(keys, metas, cb) |
} |