Files
lndhub.go/lib/service/ln.go
2022-02-15 17:24:57 +01:00

12 lines
233 B
Go

package service
import (
"context"
"github.com/lightningnetwork/lnd/lnrpc"
)
func (svc *LndhubService) GetInfo(ctx context.Context) (*lnrpc.GetInfoResponse, error) {
return svc.LndClient.GetInfo(ctx, &lnrpc.GetInfoRequest{})
}