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:
Oliver Gugger
2024-02-06 12:25:54 +01:00
parent 90c2926fdf
commit 17645cd196
4 changed files with 28 additions and 0 deletions

View File

@@ -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