Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Commit

Permalink
fix hashonread
Browse files Browse the repository at this point in the history
  • Loading branch information
aschmahmann committed Nov 19, 2021
1 parent 9cda79b commit 85a65a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ func (f *Filestore) PutMany(ctx context.Context, bs []blocks.Block) error {
}

// HashOnRead calls blockstore.HashOnRead.
func (f *Filestore) HashOnRead(ctx context.Context, enabled bool) {
f.bs.HashOnRead(ctx, enabled)
func (f *Filestore) HashOnRead(enabled bool) {
f.bs.HashOnRead(enabled)
}

var _ blockstore.Blockstore = (*Filestore)(nil)

0 comments on commit 85a65a1

Please sign in to comment.