Skip to content

Commit ffedc05

Browse files
committed
Make the used-in-pub-interfaces TransactionOutputs type alias pub
1 parent feeb893 commit ffedc05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/chain/channelmonitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ pub(crate) struct ChannelMonitorImpl<Signer: Sign> {
746746
}
747747

748748
/// Transaction outputs to watch for on-chain spends.
749-
pub(super) type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
749+
pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
750750

751751
#[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))]
752752
/// Used only in testing and fuzztarget to check serialization roundtrips don't change the

0 commit comments

Comments
 (0)