We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40dbafb + 0225b6e commit e38b29dCopy full SHA for e38b29d
lndclient/lnd_services.go
@@ -185,8 +185,8 @@ var (
185
defaultSignerFilename = "signer.macaroon"
186
187
// maxMsgRecvSize is the largest gRPC message our client will receive.
188
- // We set this to ~50Mb.
189
- maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 50)
+ // We set this to 200MiB.
+ maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 200)
190
)
191
192
func getClientConn(address string, network string, tlsPath string) (
0 commit comments