config: fix option.
This commit is contained in:
parent
22e90303a2
commit
ea53dc0fca
@ -29,7 +29,7 @@ index-address: false
|
|||||||
# Mempool
|
# Mempool
|
||||||
# limit-free: true
|
# limit-free: true
|
||||||
# limit-free-relay: 15
|
# limit-free-relay: 15
|
||||||
# reject-insane-fees: true
|
# reject-absurd-fees: true
|
||||||
# replace-by-fee: false
|
# replace-by-fee: false
|
||||||
|
|
||||||
# Pool
|
# Pool
|
||||||
|
|||||||
@ -149,7 +149,7 @@ config.parseData = function parseData(data) {
|
|||||||
options.limitFree = bool(data.limitfree);
|
options.limitFree = bool(data.limitfree);
|
||||||
options.limitFreeRelay = bool(data.limitfreerelay);
|
options.limitFreeRelay = bool(data.limitfreerelay);
|
||||||
options.requireStandard = bool(data.requirestandard);
|
options.requireStandard = bool(data.requirestandard);
|
||||||
options.rejectInsaneFees = bool(data.rejectinsanefees);
|
options.rejectAbsurdFees = bool(data.rejectabsurdfees);
|
||||||
options.replaceByFee = bool(data.replacebyfee);
|
options.replaceByFee = bool(data.replacebyfee);
|
||||||
|
|
||||||
// Pool
|
// Pool
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user