mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-01 02:02:10 +02:00
lnwallet+lntest+mod: bump btcwallet to export ScriptForOutput
This commit is contained in:
@@ -53,6 +53,15 @@ func (w *WalletController) FetchInputInfo(
|
||||
return utxo, nil
|
||||
}
|
||||
|
||||
// ScriptForOutput returns the address, witness program and redeem script for a
|
||||
// given UTXO. An error is returned if the UTXO does not belong to our wallet or
|
||||
// it is not a managed pubKey address.
|
||||
func (w *WalletController) ScriptForOutput(*wire.TxOut) (
|
||||
waddrmgr.ManagedPubKeyAddress, []byte, []byte, error) {
|
||||
|
||||
return nil, nil, nil, nil
|
||||
}
|
||||
|
||||
// ConfirmedBalance currently returns dummy values.
|
||||
func (w *WalletController) ConfirmedBalance(int32, string) (btcutil.Amount,
|
||||
error) {
|
||||
|
Reference in New Issue
Block a user