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

Commit

Permalink
fix: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmc committed Jul 19, 2019
1 parent 54ec118 commit 242712f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/components/pin/pin-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class PinManager {
cb => this.pinset.loadSet(pinRoot.value, PinTypes.direct, cb)
], (err, keys) => {
if (err) { return callback(err) }
const [ rKeys, dKeys ] = keys
const [rKeys, dKeys] = keys

this.directPins = new Set(dKeys.map(toB58String))
this.recursivePins = new Set(rKeys.map(toB58String))
Expand Down
2 changes: 1 addition & 1 deletion test/core/gc.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('gc', function () {

const factory = IPFSFactory.create({ type: 'proc', exec: IPFS })

let config = { Bootstrap: [] }
const config = { Bootstrap: [] }
if (env.isNode) {
config.Addresses = {
Swarm: ['/ip4/127.0.0.1/tcp/0']
Expand Down

0 comments on commit 242712f

Please sign in to comment.