mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
Merge pull request #3730 from guggero/grpc-receive-size
Increase block size to 200 gigamegs!
This commit is contained in:
commit
cea2429489
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ var (
|
|||
defaultTLSCertPath = filepath.Join(defaultLndDir, defaultTLSCertFilename)
|
||||
|
||||
// maxMsgRecvSize is the largest message our client will receive. We
|
||||
// set this to ~50Mb atm.
|
||||
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 50)
|
||||
// set this to 200MiB atm.
|
||||
maxMsgRecvSize = grpc.MaxCallRecvMsgSize(1 * 1024 * 1024 * 200)
|
||||
)
|
||||
|
||||
func fatal(err error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue