pub struct SignRemoteCommitmentTx {
pub tx: WithSize<Transaction>,
pub psbt: WithSize<PsbtWrapper>,
pub remote_funding_key: PubKey,
pub remote_per_commitment_point: PubKey,
pub option_static_remotekey: bool,
pub commitment_number: u64,
pub htlcs: Array<Htlc>,
pub feerate: u32,
}
Expand description
CLN only
Fields§
§tx: WithSize<Transaction>
§psbt: WithSize<PsbtWrapper>
§remote_funding_key: PubKey
§remote_per_commitment_point: PubKey
§option_static_remotekey: bool
§commitment_number: u64
§htlcs: Array<Htlc>
§feerate: u32
Trait Implementations§
Source§impl DeBolt for SignRemoteCommitmentTx
impl DeBolt for SignRemoteCommitmentTx
Source§impl Debug for SignRemoteCommitmentTx
impl Debug for SignRemoteCommitmentTx
Source§impl Decodable for SignRemoteCommitmentTx
impl Decodable for SignRemoteCommitmentTx
Source§impl Encodable for SignRemoteCommitmentTx
impl Encodable for SignRemoteCommitmentTx
Auto Trait Implementations§
impl Freeze for SignRemoteCommitmentTx
impl RefUnwindSafe for SignRemoteCommitmentTx
impl Send for SignRemoteCommitmentTx
impl Sync for SignRemoteCommitmentTx
impl Unpin for SignRemoteCommitmentTx
impl UnwindSafe for SignRemoteCommitmentTx
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more