From 8ff6b74e05ec6947a31cf5395716d32d0385eacd Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 29 May 2015 10:53:08 +0930 Subject: [PATCH] open-channel: restore the --commitment-fee option. Signed-off-by: Rusty Russell --- open-channel.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/open-channel.c b/open-channel.c index c24b3989f..b53f5f8d9 100644 --- a/open-channel.c +++ b/open-channel.c @@ -117,6 +117,9 @@ int main(int argc, char *argv[]) opt_register_arg("--anchor-fee=", opt_set_bits, opt_show_bits, &anchor.fee, "100's of satoshi to pay for anchor"); + opt_register_arg("--commitment-fee=", + opt_set_bits, opt_show_bits, &commit_tx_fee, + "100's of satoshi to pay for commitment"); opt_register_arg("--locktime=", opt_set_uintval, opt_show_uintval, &locktime_seconds, "Seconds to lock out our transaction redemption");