From 97447dd4c4fcf3c8960bce66ce31fdfd48afcb0e Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 19 Jan 2018 15:59:20 +0100 Subject: [PATCH] options: Dropping default base_fee for mainnet to 1 satoshi Signed-off-by: Christian Decker --- lightningd/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/options.c b/lightningd/options.c index 2a9e91e8f..310ed8392 100644 --- a/lightningd/options.c +++ b/lightningd/options.c @@ -406,7 +406,7 @@ static const struct config mainnet_config = { .commit_time = TIME_FROM_MSEC(10), /* Discourage dust payments */ - .fee_base = 546000, + .fee_base = 1000, /* Take 0.001% */ .fee_per_satoshi = 10,