mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
02ffe76abf
Progressbar Home update
22 lines
950 B
JavaScript
22 lines
950 B
JavaScript
var request = require('request');
|
|
var options = require("../connect");
|
|
var config = require('../config');
|
|
|
|
exports.getBalance = (req, res, next) => {
|
|
// setTimeout(()=>{res.status(201).json({"balance":{"total_balance":"15305209","confirmed_balance":"15305209"}});}, 5000);
|
|
// setTimeout(()=>{res.status(201).json({"balance":{"balance":"5983797"}});}, 5000);
|
|
options.url = config.lnd_server_url + '/balance/' + req.params.source;
|
|
options.qs = req.query;
|
|
request.get(options, (error, response, body) => {
|
|
console.log('Request params: ' + JSON.stringify(req.params) + '\nRequest Query: ' + JSON.stringify(req.query) + ' \nBalance Received: ' + JSON.stringify(body));
|
|
if(undefined === body || body.error) {
|
|
res.status(500).json({
|
|
message: "Fetching balance failed!",
|
|
error: (undefined === body) ? 'ERROR From Server!' : body.error
|
|
});
|
|
} else {
|
|
res.status(200).json({balance: body});
|
|
}
|
|
});
|
|
};
|