Skip to content

Commit 9e362e4

Browse files
update lndclient grpc max recv size
1 parent d7e9e25 commit 9e362e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lnd_services.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ var (
790790
defaultChainSubDir = "chain"
791791

792792
// maxMsgRecvSize is the largest gRPC message our client will receive.
793-
// We set this to 400MiB.
794-
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(400 * 1024 * 1024)
793+
// We set this to 600MiB.
794+
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(600 * 1024 * 1024)
795795
)
796796

797797
func getClientConn(cfg *LndServicesConfig) (*grpc.ClientConn, error) {

0 commit comments

Comments
 (0)