mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-20 06:49:27 +00:00
rpc: increase maxRequestContentLength size to 512kB (#17595)
This commit is contained in:
parent
6663e5da10
commit
b66f793443
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
contentType = "application/json"
|
contentType = "application/json"
|
||||||
maxRequestContentLength = 1024 * 128
|
maxRequestContentLength = 1024 * 512
|
||||||
)
|
)
|
||||||
|
|
||||||
var nullAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:0")
|
var nullAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:0")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue