fix: dagstore wrapper test

This commit is contained in:
Dirk McCormick 2021-09-17 15:35:37 +02:00
parent e309293a47
commit 3c37078a85

View File

@ -132,6 +132,10 @@ type mockDagStore struct {
close chan struct{} close chan struct{}
} }
func (m *mockDagStore) GetShardKeysForCid(c cid.Cid) ([]shard.Key, error) {
panic("implement me")
}
func (m *mockDagStore) DestroyShard(ctx context.Context, key shard.Key, out chan dagstore.ShardResult, _ dagstore.DestroyOpts) error { func (m *mockDagStore) DestroyShard(ctx context.Context, key shard.Key, out chan dagstore.ShardResult, _ dagstore.DestroyOpts) error {
panic("implement me") panic("implement me")
} }