From 6aa26f7d2b560a36408f6cd9993b5bfb6d49f7b5 Mon Sep 17 00:00:00 2001 From: Leonhard Weese <2104935+Liongrass@users.noreply.github.com> Date: Wed, 18 Sep 2024 03:24:28 +0800 Subject: [PATCH] Update link in c#.md This request changes a link from http to https to fix issue [#670](https://github.com/lightninglabs/docs.lightning.engineering/pull/670) in the Builder's Guide repo as this document is mirrored there. --- docs/grpc/c#.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/grpc/c#.md b/docs/grpc/c#.md index 1ebebbc3d57..3f752118066 100644 --- a/docs/grpc/c#.md +++ b/docs/grpc/c#.md @@ -219,4 +219,4 @@ client.GetInfo(new GetInfoRequest()); ### Conclusion -With the above, you should have all the `lnd` related `gRPC` dependencies installed locally in your project. In order to get up to speed with `protobuf` usage from C#, see [this official `protobuf` tutorial for C#](https://developers.google.com/protocol-buffers/docs/csharptutorial). Additionally, [this official gRPC resource](http://www.grpc.io/docs/tutorials/basic/csharp.html) provides more details around how to drive `gRPC` from C#. \ No newline at end of file +With the above, you should have all the `lnd` related `gRPC` dependencies installed locally in your project. In order to get up to speed with `protobuf` usage from C#, see [this official `protobuf` tutorial for C#](https://developers.google.com/protocol-buffers/docs/csharptutorial). Additionally, [this official gRPC resource](https://grpc.io/docs/languages/csharp/) provides more details around how to drive `gRPC` from C#.