1
1
mirror of https://github.com/bumi/lntip synced 2026-02-14 13:17:49 +00:00

Add endpoint to get ne onchain BTC address

This commit is contained in:
2020-10-22 20:15:04 +02:00
parent 01460b2c5c
commit 456ae2eb50
2 changed files with 21 additions and 0 deletions

View File

@@ -50,6 +50,18 @@ func (c LNDclient) AddInvoice(value int64, memo string) (Invoice, error) {
return result, nil
}
func (c LNDclient) NewAddress() (string, error) {
stdOutLogger.Printf("Getting a new BTC address")
request := lnrpc.NewAddressRequest{
Type: lnrpc.AddressType_WITNESS_PUBKEY_HASH,
}
res, err := c.lndClient.NewAddress(c.ctx, &request)
if err != nil {
return "", err
}
return res.Address, nil
}
// GetInvoice takes an invoice ID and returns the invoice details including settlement details
// An error is returned if no corresponding invoice was found.
func (c LNDclient) GetInvoice(paymentHashStr string) (Invoice, error) {