lntest+lnwallet: add ImportTaprootScript to wallet interface

This commit is contained in:
Oliver Gugger
2022-07-29 18:20:05 +02:00
parent 3a66a09d9d
commit 0d6e791042
2 changed files with 16 additions and 0 deletions

View File

@@ -132,6 +132,13 @@ func (w *WalletController) ImportPublicKey(*btcec.PublicKey,
return nil
}
// ImportTaprootScript currently returns a dummy value.
func (w *WalletController) ImportTaprootScript(waddrmgr.KeyScope,
*waddrmgr.Tapscript) (waddrmgr.ManagedAddress, error) {
return nil, nil
}
// SendOutputs currently returns dummy values.
func (w *WalletController) SendOutputs([]*wire.TxOut,
chainfee.SatPerKWeight, int32, string) (*wire.MsgTx, error) {