@@ -37,7 +37,6 @@ const LND_REST_PORT_1 = 8001;
3737const LND_REST_PORT_2 = 8002 ;
3838const HOST_1 = `localhost:${ LND_PEER_PORT_1 } ` ;
3939const HOST_2 = `localhost:${ LND_PEER_PORT_2 } ` ;
40- const MACAROONS_ENABLED = false ;
4140const NAP_TIME = process . env . NAP_TIME || 5000 ;
4241const walletPassword = 'bitconeeeeeect' ;
4342
@@ -111,7 +110,6 @@ describe('Action Integration Tests', function() {
111110 await poll ( ( ) => isPortOpen ( BTCD_PORT ) ) ;
112111 const lndProcess1Promise = startLndProcess ( {
113112 isDev,
114- macaroonsEnabled : MACAROONS_ENABLED ,
115113 lndSettingsDir : LND_SETTINGS_DIR_1 ,
116114 lndPort : LND_PORT_1 ,
117115 lndPeerPort : LND_PEER_PORT_1 ,
@@ -120,7 +118,6 @@ describe('Action Integration Tests', function() {
120118 } ) ;
121119 const lndProcess2Promise = startLndProcess ( {
122120 isDev,
123- macaroonsEnabled : MACAROONS_ENABLED ,
124121 lndSettingsDir : LND_SETTINGS_DIR_2 ,
125122 lndPort : LND_PORT_2 ,
126123 lndPeerPort : LND_PEER_PORT_2 ,
@@ -135,13 +132,11 @@ describe('Action Integration Tests', function() {
135132 ipcMain : ipcMainStub1 ,
136133 lndPort : LND_PORT_1 ,
137134 lndSettingsDir : LND_SETTINGS_DIR_1 ,
138- macaroonsEnabled : MACAROONS_ENABLED ,
139135 } ) ;
140136 await grcpClient . init ( {
141137 ipcMain : ipcMainStub2 ,
142138 lndPort : LND_PORT_2 ,
143139 lndSettingsDir : LND_SETTINGS_DIR_2 ,
144- macaroonsEnabled : MACAROONS_ENABLED ,
145140 } ) ;
146141
147142 db1 = sinon . createStubInstance ( AppStorage ) ;
0 commit comments