Skip to content

Commit 52f1d45

Browse files
authored
Merge pull request #886 from TheBlueMatt/2021-04-pub-alias
Make the used-in-pub-interfaces TransactionOutputs type alias pub
2 parents 2213f24 + ffedc05 commit 52f1d45

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)