Skip to content

Commit

Permalink
Merge pull request #191 from LN-Zap/chore/update-lndclient-grpc-max-r…
Browse files Browse the repository at this point in the history
…ecv-size

Update lndclient grpc max recv size
  • Loading branch information
guggero authored Aug 26, 2024
2 parents d7e9e25 + 9e362e4 commit d14bd5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnd_services.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d14bd5a

Please sign in to comment.