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

Commit

Permalink
Fixed Assignment Linter Error
Browse files Browse the repository at this point in the history
  • Loading branch information
pkafei authored and alanshaw committed Jul 17, 2019
1 parent 4365726 commit 3a1b129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class IPFS extends EventEmitter {
this.state = require('./state')(this)

boot(this)
this.once('ready', () => this.__ready = true)
this.once('ready', () => { this.__ready = true })
}
get ready () {
return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 3a1b129

Please sign in to comment.