From 9e362e461e3108896c4a5620a09717ff3451aa91 Mon Sep 17 00:00:00 2001 From: Ron Ballesteros Date: Sun, 25 Aug 2024 19:19:22 -1000 Subject: [PATCH] update lndclient grpc max recv size --- lnd_services.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnd_services.go b/lnd_services.go index 6fc2693..8e4d034 100644 --- a/lnd_services.go +++ b/lnd_services.go @@ -790,8 +790,8 @@ var ( defaultChainSubDir = "chain" // maxMsgRecvSize is the largest gRPC message our client will receive. - // We set this to 400MiB. - maxMsgRecvSize = grpc.MaxCallRecvMsgSize(400 * 1024 * 1024) + // We set this to 600MiB. + maxMsgRecvSize = grpc.MaxCallRecvMsgSize(600 * 1024 * 1024) ) func getClientConn(cfg *LndServicesConfig) (*grpc.ClientConn, error) {