Skip to content

Commit

Permalink
Merge pull request #35 from hemilabs/higher-json-limit
Browse files Browse the repository at this point in the history
Allow up to 50 MB JSON files to verify contracts
  • Loading branch information
gabmontes authored Feb 18, 2025
2 parents 99325b9 + ff15753 commit a05762b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defmodule BlockScoutWeb.Routers.SmartContractsApiV2Router do
plug(
Plug.Parsers,
parsers: [:urlencoded, :multipart, :json],
length: 20_000_000,
length: 50_000_000,
query_string_length: 5_000,
pass: ["*/*"],
json_decoder: Poison
Expand Down

0 comments on commit a05762b

Please sign in to comment.