From 0b84b7668d2ba732a1229df0815e71e8361394a5 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Sat, 11 Aug 2018 15:38:59 +0100 Subject: [PATCH] fix: skip first hash algorithm as it is no longer valid 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. --- test/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/builder.js b/test/builder.js index d05994af..523cf33c 100644 --- a/test/builder.js +++ b/test/builder.js @@ -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)