psbt: Indicate which psbt inputs were signed

This commit is contained in:
Slyghtning
2022-08-16 19:31:06 -04:00
parent ba8b8d4e17
commit b2e624cd52
10 changed files with 210 additions and 172 deletions

View File

@@ -204,8 +204,8 @@ func (w *WalletController) FundPsbt(*psbt.Packet, int32, chainfee.SatPerKWeight,
}
// SignPsbt currently does nothing.
func (w *WalletController) SignPsbt(*psbt.Packet) error {
return nil
func (w *WalletController) SignPsbt(*psbt.Packet) ([]uint32, error) {
return nil, nil
}
// FinalizePsbt currently does nothing.