From ffedc055b586cc0dd0cb6aac3263a4b28c69efb4 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 15 Apr 2021 16:10:21 -0400 Subject: [PATCH] Make the used-in-pub-interfaces TransactionOutputs type alias pub --- lightning/src/chain/channelmonitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/chain/channelmonitor.rs b/lightning/src/chain/channelmonitor.rs index 777bc06b..573d19df 100644 --- a/lightning/src/chain/channelmonitor.rs +++ b/lightning/src/chain/channelmonitor.rs @@ -746,7 +746,7 @@ pub(crate) struct ChannelMonitorImpl { } /// Transaction outputs to watch for on-chain spends. -pub(super) type TransactionOutputs = (Txid, Vec<(u32, TxOut)>); +pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>); #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))] /// Used only in testing and fuzztarget to check serialization roundtrips don't change the -- 2.30.2