From ea53dc0fca375f1746969318b8e202b6e2bd2e69 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 25 Aug 2016 14:59:41 -0700 Subject: [PATCH] config: fix option. --- etc/sample.conf | 2 +- lib/node/config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/sample.conf b/etc/sample.conf index edb882a7..11c2526e 100644 --- a/etc/sample.conf +++ b/etc/sample.conf @@ -29,7 +29,7 @@ index-address: false # Mempool # limit-free: true # limit-free-relay: 15 -# reject-insane-fees: true +# reject-absurd-fees: true # replace-by-fee: false # Pool diff --git a/lib/node/config.js b/lib/node/config.js index 18fb5626..b885497d 100644 --- a/lib/node/config.js +++ b/lib/node/config.js @@ -149,7 +149,7 @@ config.parseData = function parseData(data) { options.limitFree = bool(data.limitfree); options.limitFreeRelay = bool(data.limitfreerelay); options.requireStandard = bool(data.requirestandard); - options.rejectInsaneFees = bool(data.rejectinsanefees); + options.rejectAbsurdFees = bool(data.rejectabsurdfees); options.replaceByFee = bool(data.replacebyfee); // Pool