We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ac238 commit dcb3d2dCopy full SHA for dcb3d2d
aggregation_mode/batcher/src/server/http.rs
@@ -44,8 +44,6 @@ impl BatcherServer {
44
HttpServer::new(move || {
45
App::new()
46
.app_data(Data::new(state.clone()))
47
- // Note: this is temporary and should be lowered when we accept proofs via multipart form data instead of json
48
- .app_data(web::JsonConfig::default().limit(50 * 1024 * 1024)) // 50mb
49
.route("/nonce/{address}", web::get().to(Self::get_nonce))
50
.route("/receipts", web::get().to(Self::get_receipts))
51
.route("/proof/sp1", web::post().to(Self::post_proof_sp1))
0 commit comments