| Index: impl/memory/datastore.go
|
| diff --git a/impl/memory/datastore.go b/impl/memory/datastore.go
|
| index 62c9a99825b8b045c832d76958bc1c816d827563..fb1ec74e0627e6a4c8fdcbec1cb3838726eb6e43 100644
|
| --- a/impl/memory/datastore.go
|
| +++ b/impl/memory/datastore.go
|
| @@ -97,7 +97,11 @@ func (d *dsImpl) CatchupIndexes() {
|
| }
|
|
|
| func (d *dsImpl) SetTransactionRetryCount(count int) {
|
| - d.data.txnFakeRetry = count
|
| + d.data.setTxnRetry(count)
|
| +}
|
| +
|
| +func (d *dsImpl) Consistent(always bool) {
|
| + d.data.setConsistent(always)
|
| }
|
|
|
| func (d *dsImpl) Testable() ds.Testable {
|
|
|