Skip to content

Commit fabc23f

Browse files
committed
make TxCreationKeys fully public
1 parent 217bfcd commit fabc23f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lightning/src/ln/chan_utils.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,13 +273,13 @@ pub struct TxCreationKeys {
273273
pub per_commitment_point: PublicKey,
274274
/// The revocation key which is used to allow the owner of the commitment transaction to
275275
/// provide their counterparty the ability to punish them if they broadcast an old state.
276-
pub(crate) revocation_key: PublicKey,
276+
pub revocation_key: PublicKey,
277277
/// A's HTLC Key
278-
pub(crate) a_htlc_key: PublicKey,
278+
pub a_htlc_key: PublicKey,
279279
/// B's HTLC Key
280-
pub(crate) b_htlc_key: PublicKey,
280+
pub b_htlc_key: PublicKey,
281281
/// A's Payment Key (which isn't allowed to be spent from for some delay)
282-
pub(crate) a_delayed_payment_key: PublicKey,
282+
pub a_delayed_payment_key: PublicKey,
283283
}
284284
impl_writeable!(TxCreationKeys, 33*6,
285285
{ per_commitment_point, revocation_key, a_htlc_key, b_htlc_key, a_delayed_payment_key });

0 commit comments

Comments
 (0)