lndclient: increase gRPC max message receive size to 200MiB

pull/111/head
Oliver Gugger 5 years ago
parent 40dbafbaa1
commit 0225b6e0ea
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

@ -185,8 +185,8 @@ var (
defaultSignerFilename = "signer.macaroon"
// maxMsgRecvSize is the largest gRPC message our client will receive.
// We set this to ~50Mb.
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 50)
// We set this to 200MiB.
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 200)
)
func getClientConn(address string, network string, tlsPath string) (

Loading…
Cancel
Save