shorten default variables

This commit is contained in:
lndhub-admin 2021-07-11 03:35:59 +02:00 committed by Overtorment
parent a28eead0ab
commit 28dd3a847a

View File

@ -17,8 +17,8 @@ redis.monitor(function (err, monitor) {
/****** START SET FEES FROM CONFIG AT STARTUP ******/
/** GLOBALS */
global.forwardFee = config.defaultForwardReserveFee;
global.internalFee = config.defaultIntraHubFee;
global.forwardFee = config.forwardReserveFee;
global.internalFee = config.intraHubFee;
/****** END SET FEES FROM CONFIG AT STARTUP ******/
let bitcoinclient = require('../bitcoin');