docs: fix spelling in JavaScript example.

Fixed a spelling mistake in work "handshake" on line 33.
Stylized grpc to gRPC on line 32.
This commit is contained in:
mateuszmp 2021-12-13 15:32:31 +01:00 committed by Oliver Gugger
parent 258c1987e8
commit 35b11ef791
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -31,8 +31,8 @@ const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');
const fs = require("fs");
// Due to updated ECDSA generated tls.cert we need to let gprc know that
// we need to use that cipher suite otherwise there will be a handhsake
// Due to updated ECDSA generated tls.cert we need to let gRPC know that
// we need to use that cipher suite otherwise there will be a handshake
// error when we communicate with the lnd rpc server.
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA'