mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Introduce ChangeDestinationSource
trait
.. which users should implement on their on-chain wallet to allow us to retrieve a new change destination script.
This commit is contained in:
parent
d8021c7891
commit
cd4cc203a2
1 changed files with 11 additions and 0 deletions
|
@ -904,6 +904,17 @@ pub trait SignerProvider {
|
|||
fn get_shutdown_scriptpubkey(&self) -> Result<ShutdownScript, ()>;
|
||||
}
|
||||
|
||||
/// A helper trait that describes an on-chain wallet capable of returning a (change) destination
|
||||
/// script.
|
||||
pub trait ChangeDestinationSource {
|
||||
/// Returns a script pubkey which can be used as a change destination for
|
||||
/// [`OutputSpender::spend_spendable_outputs`].
|
||||
///
|
||||
/// This method should return a different value each time it is called, to avoid linking
|
||||
/// on-chain funds controlled to the same user.
|
||||
fn get_change_destination_script(&self) -> Result<ScriptBuf, ()>;
|
||||
}
|
||||
|
||||
/// A simple implementation of [`WriteableEcdsaChannelSigner`] that just keeps the private keys in memory.
|
||||
///
|
||||
/// This implementation performs no policy checks and is insufficient by itself as
|
||||
|
|
Loading…
Add table
Reference in a new issue