Skip to content

Commit

Permalink
frdrpcserver: bump REST connection gRPC max recv size
Browse files Browse the repository at this point in the history
  • Loading branch information
guggero committed Dec 7, 2023
1 parent 66064a9 commit 0a0cb43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frdrpcserver/rpcserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ var (
)

// maxMsgRecvSize is the largest message our REST proxy will receive. We
// set this to 200MiB atm.
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 200)
// set this to 400MiB atm.
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(400 * 1024 * 1024)

// maxInvoiceQueries is the maximum number of invoices we request from
// lnd at a time.
Expand Down

0 comments on commit 0a0cb43

Please sign in to comment.