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

Commit

Permalink
fix typo in blockstore.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Trottier authored and Stebalien committed Feb 2, 2020
1 parent 7a4b99e commit e62b875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func (bs *blockstore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error) {
// need to convert to key.Key using key.KeyFromDsKey.
bk, err := dshelp.BinaryFromDsKey(ds.RawKey(e.Key))
if err != nil {
log.Warning("error pasring key from binary: %s", err)
log.Warningf("error parsing key from binary: %s", err)
continue
}
k, err := cid.Cast(bk)
Expand Down

0 comments on commit e62b875

Please sign in to comment.