Skip to content

Commit

Permalink
chore: increase JSON limit to 50e3
Browse files Browse the repository at this point in the history
  • Loading branch information
bonustrack authored Jul 19, 2024
1 parent 3f51bd0 commit 71b4251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createHash } from 'crypto';
import { Response } from 'express';

export const MAX = 10e4;
export const MAX = 50e4;

export function rpcSuccess(res: Response, result: any, id = '') {
res.json({
Expand Down

0 comments on commit 71b4251

Please sign in to comment.