Skip to content

Commit

Permalink
fix: support more ipfs options (#396)
Browse files Browse the repository at this point in the history
in-proc daemon didnt support all the js-ipfs options, this should be improved so we dont need to syncronize manual.
  • Loading branch information
hugomrdias committed Oct 14, 2019
1 parent 4d6da82 commit 2a9706e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ipfsd-in-proc.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ class InProc {
EXPERIMENTAL: this.opts.EXPERIMENTAL,
libp2p: this.opts.libp2p,
config: this.opts.config,
silent: this.opts.silent
silent: this.opts.silent,
relay: this.opts.relay,
preload: this.opts.preload,
ipld: this.opts.ipld,
connectionManager: this.opts.connectionManager
})
return this
}
Expand Down

0 comments on commit 2a9706e

Please sign in to comment.