Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
fix: skip first hash algorithm as it is no longer valid
Browse files Browse the repository at this point in the history
js-multihash#57 makes the first hash name `id` which cannot be used
as a hashing algorithm name so don't try to use it.
  • Loading branch information
achingbrain committed Aug 11, 2018
1 parent bef3152 commit 0b84b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = (repo) => {
describe('builder', () => {
let ipld

const testMultihashes = Object.keys(mh.names).slice(0, 40)
const testMultihashes = Object.keys(mh.names).slice(1, 40)

before(() => {
const bs = new BlockService(repo)
Expand Down

0 comments on commit 0b84b76

Please sign in to comment.