mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
Increase http request size limit
This commit is contained in:
parent
352d900fea
commit
743691ca24
1 changed files with 2 additions and 1 deletions
|
|
@ -31,7 +31,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxRequestContentLength = 1024 * 1024 * 5
|
// ZEKO NOTE: We allow much larger requests than the default 5MB
|
||||||
|
maxRequestContentLength = 1024 * 1024 * 1024 * 5 // 5GB
|
||||||
contentType = "application/json"
|
contentType = "application/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue