fix(startup): Fixing bug from merge with upstream

This commit is contained in:
Chris Troutner
2022-07-08 08:51:16 -07:00
parent 3b836a7a35
commit 469f1e05e8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,6 +29,6 @@ export IPFS_TCP_PORT=4001
# MongoDB connection string.
export DBURL=mongodb://localhost:27017/ipfs-service-dev
export ENABLE_CIRCUIT_RELAY=true
#export ENABLE_CIRCUIT_RELAY=true
npm start
+1 -1
View File
@@ -53,7 +53,7 @@ class Adapters {
// Start the IPFS node.
// Do not start these adapters if this is an e2e test.
if (this.config.env !== 'test') {
await this.ipfs.start()
await this.ipfs.start({ bchjs: this.bchjs })
}
console.log('Async Adapters have been started.')