mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
rpc: raise HTTP/WebSocket request size limit to 5MB
This commit is contained in:
parent
7104979968
commit
a27c950996
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxRequestContentLength = 1024 * 512
|
maxRequestContentLength = 1024 * 1024 * 5
|
||||||
contentType = "application/json"
|
contentType = "application/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue