Skip to content

Commit 9368b59

Browse files
committed
reduce json buffer to 1M
1 parent 7e57738 commit 9368b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

silkworm/rpc/http/connection.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace silkworm::rpc::http {
2929

3030
using RequestWithStringBody = boost::beast::http::request<boost::beast::http::string_body>;
3131

32-
inline constexpr size_t kDefaultCapacity = 10 * 1024 * 1024;
32+
inline constexpr size_t kDefaultCapacity = 1 * 1024 * 1024;
3333

3434
struct RequestData {
3535
bool request_keep_alive_{false};

0 commit comments

Comments
 (0)