lnwallet: add derivation and prev TX to UTXO

This commit is contained in:
Oliver Gugger 2022-01-05 11:04:20 +01:00
parent 167a1f2b79
commit b54279dd87
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
2 changed files with 7 additions and 1 deletions

View File

@ -24,7 +24,9 @@ import (
//
// This is a part of the WalletController interface.
func (b *BtcWallet) FetchInputInfo(prevOut *wire.OutPoint) (*lnwallet.Utxo, error) {
_, txOut, _, confirmations, err := b.wallet.FetchInputInfo(prevOut)
prevTx, txOut, bip32, confirmations, err := b.wallet.FetchInputInfo(
prevOut,
)
if err != nil {
return nil, err
}
@ -44,6 +46,8 @@ func (b *BtcWallet) FetchInputInfo(prevOut *wire.OutPoint) (*lnwallet.Utxo, erro
PkScript: txOut.PkScript,
Confirmations: confirmations,
OutPoint: *prevOut,
Derivation: bip32,
PrevTx: prevTx,
}, nil
}

View File

@ -78,6 +78,8 @@ type Utxo struct {
Confirmations int64
PkScript []byte
wire.OutPoint
Derivation *psbt.Bip32Derivation
PrevTx *wire.MsgTx
}
// TransactionDetail describes a transaction with either inputs which belong to