implement unionBlockstore#HashOnRead.

This commit is contained in:
Raúl Kripalani 2021-03-02 21:22:24 +00:00
parent 2047a74958
commit 68b8e8e9cb

View File

@ -104,5 +104,7 @@ func (m unionBlockstore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error
}
func (m unionBlockstore) HashOnRead(enabled bool) {
panic("implement me")
for _, bs := range m {
bs.HashOnRead(enabled)
}
}