remove extra quotes

This commit is contained in:
Aakil Fernandes 2015-12-10 13:59:35 -05:00 committed by Aakil Fernandes
parent e6ee0395d0
commit c1195b4e03
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ Blockchain.prototype.generate_basic_command = function() {
cmd += "--rpcport " + config.rpcPort + " ";
cmd += "--rpcaddr " + config.rpcHost + " ";
cmd += "--networkid " + config.networkId + " ";
cmd += "--rpccorsdomain \"" + config.rpcWhitelist + "\" ";
cmd += "--rpccorsdomain " + config.rpcWhitelist + " ";
if(config.testnet){
cmd += "--testnet "