FIX: default values for fees config
This commit is contained in:
parent
600556f84c
commit
e42ef3a85e
@ -17,8 +17,8 @@ redis.monitor(function (err, monitor) {
|
||||
|
||||
/****** START SET FEES FROM CONFIG AT STARTUP ******/
|
||||
/** GLOBALS */
|
||||
global.forwardFee = config.forwardReserveFee;
|
||||
global.internalFee = config.intraHubFee;
|
||||
global.forwardFee = config.forwardReserveFee || 0.01;
|
||||
global.internalFee = config.intraHubFee || 0.003;
|
||||
/****** END SET FEES FROM CONFIG AT STARTUP ******/
|
||||
|
||||
let bitcoinclient = require('../bitcoin');
|
||||
|
Loading…
x
Reference in New Issue
Block a user