lnwallet: adds list addresses method

This commit is contained in:
priyanshiiit
2022-07-23 11:05:53 +05:30
parent 909ba573ea
commit 99e4728eb7
3 changed files with 147 additions and 0 deletions

View File

@@ -110,6 +110,13 @@ func (w *WalletController) RequiredReserve(uint32) btcutil.Amount {
return 0
}
// ListAddresses currently returns a dummy value.
func (w *WalletController) ListAddresses(string,
bool) (lnwallet.AccountAddressMap, error) {
return nil, nil
}
// ImportAccount currently returns a dummy value.
func (w *WalletController) ImportAccount(string, *hdkeychain.ExtendedKey,
uint32, *waddrmgr.AddressType, bool) (*waddrmgr.AccountProperties,