From 5b139ee36a6725ad3c6a1d6d45dcbb02c871da6d Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Wed, 1 Sep 2021 11:04:07 +1000 Subject: [PATCH] Remove erroneous note --- cfd_protocol/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/cfd_protocol/src/lib.rs b/cfd_protocol/src/lib.rs index 1a6bdf9..d1d2e19 100644 --- a/cfd_protocol/src/lib.rs +++ b/cfd_protocol/src/lib.rs @@ -612,7 +612,6 @@ mod tests { fn build_dlc_descriptor(maker_pk: PublicKey, taker_pk: PublicKey) -> Descriptor { const MINISCRIPT_TEMPLATE: &str = "c:and_v(v:pk(A),pk_k(B))"; - // NOTE: This shouldn't be a source of error, but maybe it is let maker_pk = ToHex::to_hex(&maker_pk.key); let taker_pk = ToHex::to_hex(&taker_pk.key);