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

Commit 295d86e

Browse files
committed
fix: using correct murmur3 codec name
1 parent a80f4d8 commit 295d86e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/importer/dir-sharded.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const multihashing = require('multihashing-async')
1313
const Bucket = require('../hamt')
1414

1515
const hashFn = function (value, callback) {
16-
multihashing(value, 'murmur3', (err, hash) => {
16+
multihashing(value, 'murmur3-128', (err, hash) => {
1717
if (err) {
1818
callback(err)
1919
} else {

0 commit comments

Comments
 (0)