From: Matt Corallo Date: Thu, 15 Apr 2021 20:10:21 +0000 (-0400) Subject: Make the used-in-pub-interfaces TransactionOutputs type alias pub X-Git-Tag: v0.0.14~22^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=refs%2Fheads%2F2021-04-pub-alias;p=rust-lightning Make the used-in-pub-interfaces TransactionOutputs type alias pub --- diff --git a/lightning/src/chain/channelmonitor.rs b/lightning/src/chain/channelmonitor.rs index 777bc06bf..573d19df5 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