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

Commit

Permalink
fix: using correct murmur3 codec name
Browse files Browse the repository at this point in the history
  • Loading branch information
pgte committed Mar 23, 2017
1 parent a80f4d8 commit 295d86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/importer/dir-sharded.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const multihashing = require('multihashing-async')
const Bucket = require('../hamt')

const hashFn = function (value, callback) {
multihashing(value, 'murmur3', (err, hash) => {
multihashing(value, 'murmur3-128', (err, hash) => {
if (err) {
callback(err)
} else {
Expand Down

0 comments on commit 295d86e

Please sign in to comment.