2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/connect.js

24 lines
494 B
JavaScript
Raw Normal View History

2018-09-15 01:31:01 +00:00
var fs = require('fs');
var common = require('./common');
2018-09-15 01:31:01 +00:00
var clArgs = require('optimist').argv;
if(undefined !== clArgs.lndir) {
common.lnd_dir = clArgs.lndir;
2018-09-15 01:31:01 +00:00
} else {
if(common.lnd_dir === '') {
common.lnd_dir = __dirname;
2018-09-15 01:31:01 +00:00
}
}
var macaroon = fs.readFileSync(common.lnd_dir + '/admin.macaroon').toString('hex');
2018-09-15 01:31:01 +00:00
var options = {
url: '',
rejectUnauthorized: false,
json: true,
headers: {
'Grpc-Metadata-macaroon': macaroon,
},
form: ''
};
module.exports = options;