mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-15 12:50:28 +02:00
Merge pull request #111 from guggero/grpc-receive-size
lndclient: increase gRPC max message receive size to 200MiB
This commit is contained in:
commit
e38b29db4a
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue