mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 23:21:12 +02:00
multi: add DecorateInputs to WalletController interface
This commit adds the new DecorateInputs method of the base wallet to the WalletController interface.
This commit is contained in:
@@ -227,6 +227,11 @@ func (w *WalletController) FinalizePsbt(_ *psbt.Packet, _ string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// DecorateInputs currently does nothing.
|
||||
func (w *WalletController) DecorateInputs(*psbt.Packet, bool) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// PublishTransaction sends a transaction to the PublishedTransactions chan.
|
||||
func (w *WalletController) PublishTransaction(tx *wire.MsgTx, _ string) error {
|
||||
w.PublishedTransactions <- tx
|
||||
|
Reference in New Issue
Block a user