Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1664 from OpenBazaar/back2mainnet
Browse files Browse the repository at this point in the history
back to a mainnet bundled server
  • Loading branch information
jjeffryes authored Jan 4, 2019
2 parents 0e7fcda + 3ca93bb commit 14b78b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/utils/localServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class LocalServer {
}

this._isRunning = true;
let serverStartArgs = ['start', '-t', ...commandLineArgs];
let serverStartArgs = ['start', ...commandLineArgs];

// wire in our auth cookie
if (global.authCookie) {
Expand Down
2 changes: 1 addition & 1 deletion js/utils/serverConnect.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export default function connect(server, options = {}) {
}

if (newServerDataDir && typeof newServerDataDir === 'string') {
commandLineArgs = commandLineArgs.concat(['-d', `${newServerDataDir}-testnet`]);
commandLineArgs = commandLineArgs.concat(['-d', newServerDataDir]);
}

// If we're not connecting to the local bundled server or it's running with incompatible
Expand Down

0 comments on commit 14b78b4

Please sign in to comment.