Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 9074c0a

Browse files
committed
Update Binary Flags
1 parent 9d01992 commit 9074c0a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/lightning-desktop/main.development.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ const runProcesses = (processes, logs) => {
6060

6161
const logBuffer = []
6262
const logs = observe(logBuffer)
63-
const network = isDev ? '--simnet' : '--testnet'
6463
const miningaddr = isDev ? '--miningaddr=4NyWssGkW6Nbwj3nXrJU54U2ijHgWaKZ1N19w' : ''
6564

6665
const processes = [
6766
{
6867
name: 'lnd',
6968
args: [
70-
'--btcdhost=127.0.0.1',
71-
'--rpcuser=kek',
72-
'--rpcpass=kek',
73-
network,
69+
'--bitcoin.active',
70+
'--bitcoin.rpchost=localhost',
71+
'--bitcoin.rpcuser=kek',
72+
'--bitcoin.rpcpass=kek',
73+
isDev ? '--bitcoin.simnet' : '--bitcoin.testnet',
7474
'--debuglevel=debug',
7575
'--debughtlc',
7676
],
@@ -79,7 +79,7 @@ const processes = [
7979
args: [
8080
'--rpcuser=kek',
8181
'--rpcpass=kek',
82-
network,
82+
isDev ? '--simnet' : '--testnet',
8383
miningaddr,
8484
'--txindex',
8585
],

0 commit comments

Comments
 (0)