Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(prover-sever): enhance error checking #20

Merged
merged 4 commits into from
Aug 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat(prover-server): increase request size to 32MiB
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
commit d750cffad945541cb4577aaf4e94ad67f3024e5f
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