Ride-The-Lightning-RTL/common.js

15 lines
268 B
JavaScript
Raw Normal View History

var common = {};
2019-01-01 17:26:51 +01:00
common.lnd_server_url = '';
2019-01-13 23:55:25 +01:00
common.enable_logging = false;
common.convertToBTC = (num) => {
return (num / 100000000).toFixed(6);
};
common.convertTimestampToDate = (num) => {
2018-11-24 21:11:23 +01:00
return new Date(+num*1000).toUTCString();
};
module.exports = common;