mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Make the used-in-pub-interfaces TransactionOutputs type alias pub
This commit is contained in:
parent
feeb89305a
commit
ffedc055b5
1 changed files with 1 additions and 1 deletions
|
@ -746,7 +746,7 @@ pub(crate) struct ChannelMonitorImpl<Signer: Sign> {
|
|||
}
|
||||
|
||||
/// 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
|
||||
|
|
Loading…
Add table
Reference in a new issue