Struct lightning_signer::util::loopback::LoopbackChannelSigner[][src]

pub struct LoopbackChannelSigner {
    pub node_id: PublicKey,
    pub channel_id: ChannelId,
    pub signer: Arc<MultiSigner>,
    pub pubkeys: ChannelPublicKeys,
    pub is_outbound: bool,
    pub channel_value_sat: u64,
}

Fields

node_id: PublicKeychannel_id: ChannelIdsigner: Arc<MultiSigner>pubkeys: ChannelPublicKeysis_outbound: boolchannel_value_sat: u64

Implementations

Trait Implementations

Gets the per-commitment point for a specific commitment number Read more

Gets the commitment secret for a specific commitment number as part of the revocation process Read more

Validate the counterparty’s signatures on the holder commitment transaction and HTLCs. Read more

Gets the holder’s channel public keys and basepoints

Gets an arbitrary identifier describing the set of keys which are provided back to you in some SpendableOutputDescriptor types. This should be sufficient to identify this Sign object uniquely and lookup or re-derive its keys. Read more

Create a signature for a counterparty’s commitment transaction and associated HTLC transactions. Read more

Validate the counterparty’s revocation. Read more

Create a signatures for a holder’s commitment transaction and its claiming HTLC transactions. This will only ever be called with a non-revoked commitment_tx. This will be called with the latest commitment_tx when we initiate a force-close. This will be called with the previous latest, just to get claiming HTLC signatures, if we are reacting to a ChannelMonitor replica that decided to broadcast before it had been updated to the latest. This may be called multiple times for the same transaction. Read more

Same as sign_holder_commitment, but exists only for tests to get access to holder commitment transactions which will be broadcasted later, after the channel has moved on to a newer state. Thus, needs its own method as sign_holder_commitment may enforce that we only ever get called once. Read more

Create a signature for the given input in a transaction spending an HTLC transaction output or a commitment transaction to_local output when our counterparty broadcasts an old state. Read more

Create a signature for the given input in a transaction spending a commitment transaction HTLC output when our counterparty broadcasts an old state. Read more

Create a signature for a claiming transaction for a HTLC output on a counterparty’s commitment transaction, either offered or received. Read more

Create a signature for a (proposed) closing transaction. Read more

Signs a channel announcement message with our funding key, proving it comes from one of the channel participants. Read more

Set the counterparty static channel data, including basepoints, counterparty_selected/holder_selected_contest_delay and funding outpoint. This is done as soon as the funding outpoint is known. Since these are static channel data, they MUST NOT be allowed to change to different values once set. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Persist a new channel’s data in response to a chain::Watch::watch_channel call. This is called by ChannelManager for new channels, or may be called directly, e.g. on startup. Read more

Update one channel’s data. The provided ChannelMonitor has already applied the given update. Read more

Watches a channel identified by funding_txo using monitor. Read more

Updates a channel identified by funding_txo by applying update to its monitor. Read more

Returns any monitor events since the last call. Subsequent calls must only return new events. Read more

Writes self out to the given Writer

Writes self out to a Vec

Writes self out to a Vec

Gets the length of this object after it has been serialized. This can be overridden to optimize cases where we prepend an object with its length. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.