diff --git a/rpc/http.go b/rpc/http.go index b82ea2707a..9504f168bf 100644 --- a/rpc/http.go +++ b/rpc/http.go @@ -31,7 +31,8 @@ import ( ) 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" )