Skip to content

Commit

Permalink
feat(prover-server): increase request size to 32MiB
Browse files Browse the repository at this point in the history
adjust the request size to process the JSON trace of a block
containing 100 ERC-20 transfer transactions.
  • Loading branch information
dongchangYoo committed Aug 23, 2023
1 parent 8345724 commit bd9da85
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions prover-server/src/server_main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ fn main() {
kroma_info(format!("Prover server starting on {endpoint}"));
let server = ServerBuilder::new(io)
.threads(3)
.max_request_body_size(32_000_000)
.start_http(&endpoint.parse().unwrap())
.unwrap();

Expand Down

0 comments on commit bd9da85

Please sign in to comment.