From 63bef2b44e5d1a7a8c5e37ad5b973d3783bc1a24 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 27 Aug 2018 13:11:37 -0400 Subject: [PATCH] Make note about complying with BOLT 7 announcement_signatures --- src/ln/channel.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ln/channel.rs b/src/ln/channel.rs index 44875fcd6..4fb4f47f0 100644 --- a/src/ln/channel.rs +++ b/src/ln/channel.rs @@ -373,6 +373,8 @@ impl Channel { } fn derive_minimum_depth(_channel_value_satoshis_msat: u64, _value_to_self_msat: u64) -> u32 { + // Note that in order to comply with BOLT 7 announcement_signatures requirements this must + // be at least 6. const CONF_TARGET: u32 = 12; //TODO: Should be much higher CONF_TARGET } -- 2.39.5