From 10e247540f6127eea3d68df4f1e67c58d8b7386b Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Tue, 3 Mar 2020 16:30:15 +0100 Subject: [PATCH] watchtowerrpc: fix typo --- lnrpc/watchtowerrpc/watchtower.pb.go | 4 ++-- lnrpc/watchtowerrpc/watchtower.proto | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lnrpc/watchtowerrpc/watchtower.pb.go b/lnrpc/watchtowerrpc/watchtower.pb.go index 2a010f1ca..3b19e6ee4 100644 --- a/lnrpc/watchtowerrpc/watchtower.pb.go +++ b/lnrpc/watchtowerrpc/watchtower.pb.go @@ -150,7 +150,7 @@ const _ = grpc.SupportPackageIsVersion4 type WatchtowerClient interface { //* lncli: tower info //GetInfo returns general information concerning the companion watchtower - //including it's public key and URIs where the server is currently + //including its public key and URIs where the server is currently //listening for clients. GetInfo(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*GetInfoResponse, error) } @@ -176,7 +176,7 @@ func (c *watchtowerClient) GetInfo(ctx context.Context, in *GetInfoRequest, opts type WatchtowerServer interface { //* lncli: tower info //GetInfo returns general information concerning the companion watchtower - //including it's public key and URIs where the server is currently + //including its public key and URIs where the server is currently //listening for clients. GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error) } diff --git a/lnrpc/watchtowerrpc/watchtower.proto b/lnrpc/watchtowerrpc/watchtower.proto index b79b52b00..818807ef2 100644 --- a/lnrpc/watchtowerrpc/watchtower.proto +++ b/lnrpc/watchtowerrpc/watchtower.proto @@ -7,7 +7,7 @@ option go_package = "github.com/lightningnetwork/lnd/lnrpc/watchtowerrpc"; service Watchtower { /** lncli: tower info GetInfo returns general information concerning the companion watchtower - including it's public key and URIs where the server is currently + including its public key and URIs where the server is currently listening for clients. */ rpc GetInfo (GetInfoRequest) returns (GetInfoResponse);