Skip to content

Commit

Permalink
fix: Increase the json limit for RPC requests (#5161)
Browse files Browse the repository at this point in the history
This PR increases the json rpc payload size limit.
  • Loading branch information
PhilWindle authored Mar 12, 2024
1 parent 5457edb commit 419958c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class JsonRpcServer {
app.use(compress({ br: false } as any));
app.use(
bodyParser({
jsonLimit: '10mb',
jsonLimit: '50mb',
enableTypes: ['json'],
detectJSON: () => true,
}),
Expand Down

0 comments on commit 419958c

Please sign in to comment.