Skip to content

Commit 7a8a089

Browse files
authored
chore: update ipfs-block, fixes #108 (#109)
1 parent fe76115 commit 7a8a089

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@
3737
"fs-pull-blob-store": "^0.4.1",
3838
"idb-pull-blob-store": "^0.5.1",
3939
"interface-pull-blob-store": "^0.6.0",
40-
"lodash": "^4.16.6",
41-
"multihashes": "^0.2.2",
40+
"lodash": "^4.17.2",
41+
"multihashes": "^0.3.0",
4242
"ncp": "^2.0.0",
4343
"pre-commit": "^1.2.0",
4444
"rimraf": "^2.5.4"
4545
},
4646
"dependencies": {
4747
"async": "^2.1.4",
4848
"base32.js": "^0.1.0",
49-
"ipfs-block": "^0.5.0",
49+
"ipfs-block": "^0.5.3",
5050
"lock": "^0.1.3",
5151
"multihashes": "^0.3.0",
5252
"pull-defer": "^0.2.2",

test/blockstore-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = (repo) => {
1414
describe('blockstore', () => {
1515
const helloKey = 'CIQLS/CIQLSTJHXGJU2PQIUUXFFV62PWV7VREE57RXUU4A52IIR55M4LX432I.data'
1616
const blockCollection = _.range(100).map((i) => new Block(new Buffer(`hello-${i}-${Math.random()}`)))
17-
const b = new Block('hello world')
17+
const b = new Block(new Buffer('hello world'))
1818
let bKey
1919

2020
before((done) => {

0 commit comments

Comments
 (0)