From 6fb6994101cd767efc5061716a9dac59c9ab6a02 Mon Sep 17 00:00:00 2001 From: Jeffrey Czyz Date: Fri, 11 Feb 2022 22:12:33 -0600 Subject: [PATCH] Fix `cargo doc` warning in lightning-block-sync --- lightning-block-sync/src/convert.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning-block-sync/src/convert.rs b/lightning-block-sync/src/convert.rs index 358076f4c..8023c8375 100644 --- a/lightning-block-sync/src/convert.rs +++ b/lightning-block-sync/src/convert.rs @@ -182,7 +182,7 @@ impl TryInto for JsonResponse { } /// Converts a JSON value into a transaction. WATCH OUT! this cannot be used for zero-input transactions -/// (e.g. createrawtransaction). See https://github.com/rust-bitcoin/rust-bitcoincore-rpc/issues/197 +/// (e.g. createrawtransaction). See impl TryInto for JsonResponse { type Error = std::io::Error; fn try_into(self) -> std::io::Result { -- 2.39.5